- Mar 12, 2014
-
-
Hafiz Abid Qadeer authored
llvm-svn: 203654
-
Hafiz Abid Qadeer authored
llvm-svn: 203653
-
Hafiz Abid Qadeer authored
It can be used in multiple files now. llvm-svn: 203652
-
Hafiz Abid Qadeer authored
This allows to use some code for mingw which was previously only used for MSVC. llvm-svn: 203651
-
Hafiz Abid Qadeer authored
They help fix mingw build. llvm-svn: 203650
-
Hafiz Abid Qadeer authored
This is to help fix mingw build. llvm-svn: 203649
-
Dmitry Vyukov authored
if the thread is cancelled in pthread_cond_wait, it locks the mutex before processing pthread_cleanup stack but tsan was missing that, thus reporting false double-lock/wrong-unlock errors see the test for details llvm-svn: 203648
-
Dmitry Vyukov authored
llvm-svn: 203647
-
-
Daniel Jasper authored
Caused by unknown tokens (e.g. "\n") not properly updating the state. Example: const char* c = STRINGIFY( \na : b); llvm-svn: 203645
-
Patrik Hagglund authored
In some cases the include is pushed "downstream" (or removed if unused). llvm-svn: 203644
-
Craig Topper authored
llvm-svn: 203643
-
NAKAMURA Takumi authored
llvm-svn: 203642
-
Craig Topper authored
llvm-svn: 203641
-
Craig Topper authored
llvm-svn: 203640
-
Saleem Abdulrasool authored
This is unnecessary now that the flag handling has been fixed. The flags will be added properly in the main CMakeLists.txt after the config-ix inclusion which performs the required check. llvm-svn: 203639
-
Saleem Abdulrasool authored
Always use list(APPEND) as it will perform the desired action even if the list is empty or previously unset. The first set is harmless, however, the subsequent set was overwriting the previous flag setup resulting in an improper compilation command being generated. This manifested as a build failure on Linux when using cmake + ninja. llvm-svn: 203638
-
Saleem Abdulrasool authored
add_definitions is meant for adding C preprocessor definitions. Modern cmake suggests use of the CMAKE_CXX_FLAGS for the purposes of pushing flags to the compilation commands. Simply switch to the modern form given that we are already requiring a new enough cmake. llvm-svn: 203637
-
Saleem Abdulrasool authored
llvm-svn: 203636
-
Hans Wennborg authored
It seems gas can't handle CFI directives with VFP register names ("d12", etc.). This broke us trying to build Chromium for Android after 201423. A gas bug has been filed: https://sourceware.org/bugzilla/show_bug.cgi?id=16694 compnerd suggested making this conditional on whether we're using the integrated assembler or not. I'll look into that in a follow-up patch. Differential Revision: http://llvm-reviews.chandlerc.com/D3049 llvm-svn: 203635
-
David Blaikie authored
llvm-svn: 203634
-
Saleem Abdulrasool authored
Unfortunately, XFAIL applies to the entire file. Split the test into two different units, enabling the proper application of XFAIL on the test which is expected to fail on Windows. llvm-svn: 203633
-
Saleem Abdulrasool authored
Reduce the stack usage as hopefully include paths are usually not too long. Add a test case for the path normalisation behaviour. llvm-svn: 203632
-
Marshall Clow authored
THIRD TIME. Richard pointed out (again) that I'd switched the order of the instance variables; and thus failed to repair the ABI break. After this, I'm going to sit down and watch TV for the evening. llvm-svn: 203631
-
Ben Langmuir authored
When enabled, always validate the system headers when loading a module. The end result of this is that when these headers change, we will notice and rebuild the module. llvm-svn: 203630
-
Aaron Ballman authored
llvm-svn: 203628
-
Adrian Prantl authored
This reverts commit 203504. We decided that it is better to disable this test on a per-buildbot basis in zorg rather than everywhere on Darwin. llvm-svn: 203627
-
Joerg Sonnenberger authored
programs. Initialize lsdaEncoding to DW_EH_PE_omit and check for that value to decide whether a value should be decoded. llvm-svn: 203626
-
David Blaikie authored
llvm-svn: 203625
-
Hans Wennborg authored
This narrows the impact of r188833 after Dimitry pointed out that it's good to be able to tell the difference between 'cc' and 'CC'. llvm-svn: 203624
-
David Blaikie authored
I'll fix this to not test assembly in a moment. llvm-svn: 203623
-
David Blaikie authored
llvm-svn: 203622
-
David Blaikie authored
llvm-svn: 203621
-
David Blaikie authored
llvm-svn: 203620
-
David Blaikie authored
I could fold the callers into their one call site, but the indirection (given how verbose choosing the section is) seemed helpful. The use of a member function pointer's a bit "tricky", but seems limited enough, the call sites are simple/clean/clear, and there's only one use. llvm-svn: 203619
-
Duncan P. N. Exon Smith authored
llvm-svn: 203618
-
David Blaikie authored
llvm-svn: 203617
-
- Mar 11, 2014
-
-
David Blaikie authored
llvm-svn: 203616
-
Sebastian Pop authored
the first run of the polly buildbot failed, and then it started passing. This is due to the fact that the buildbot re-builds in an existing directory, and the first run does not have WITH_POLLY set when it enters tools/. Thus, cmake ignores the tools/polly dir in the first run, and then because it reuses the CMakeCache.txt of the previous run, it has the WITH_POLLY set by the previous run, and so it passes the second time. llvm-svn: 203615
-
Saleem Abdulrasool authored
Normalise the path separator character on non-windows platforms. Although this would work on Windows as well (most newer versions of Windows support either '/' or '\' as a path separator character), it could potentially cause problems with full UNC paths. This change enables the use of the Windows SDK on Linux which will not accept '\' as a path separator. llvm-svn: 203614
-