"git@repo.hca.bsc.es:rferrer/llvm-epi-0.8.git" did not exist on "57485472e29cf063c765d231c65c0be4f075e299"
- Nov 15, 2013
-
-
Hans Wennborg authored
This was casuing my release+asserts build on Windows to fail. llvm-svn: 194747
-
Rui Ueyama authored
llvm-svn: 194746
-
Joerg Sonnenberger authored
llvm-svn: 194745
-
- Nov 14, 2013
-
-
David Peixotto authored
llvm-svn: 194744
-
David Peixotto authored
This patch adds -I to the arguments that are passed to the integrated assembler from -Wa, and -Xassembler args. llvm-svn: 194743
-
Howard Hinnant authored
trivial in C++03, thus making it trivial in both C++03 and C++11. This patch allows one to opt-in/out of this decision with a macro. You can choose to have the pair copy constructor always be trivial, or always be non-trivial. The flag controlling this is now _LIBCPP_TRIVIAL_PAIR_COPY_CTOR. The client can define this flag to 1, and the pair copy constructor will be trivial (when possible of course), or to 0, and the pair copy constructor will be nontrivial. Default settings for this flag are set in <__config> (as usual). With this commit the default is _LIBCPP_TRIVIAL_PAIR_COPY_CTOR=1 for all platforms except __APPLE__, which defaults to _LIBCPP_TRIVIAL_PAIR_COPY_CTOR=0. llvm-svn: 194742
-
Hans Wennborg authored
They were previously not part of the install target. Differential Revision: http://llvm-reviews.chandlerc.com/D2154 llvm-svn: 194741
-
Richard Smith authored
template, that member has a dependent type (even if we can see the definition of the member of the primary template), because the array size could change in a member specialization. Patch by Karthik Bhat! llvm-svn: 194740
-
Warren Hunt authored
This patch tests introduces a proper codegen test in place of the "codegen no longer crashes" test introduced in r193664. The test is also moved from layout to CodeGenCXX. Differential Revision: http://llvm-reviews.chandlerc.com/D2174 llvm-svn: 194739
-
Matt Arsenault authored
llvm-svn: 194738
-
David Blaikie authored
llvm-svn: 194737
-
Richard Smith authored
llvm-svn: 194736
-
Rui Ueyama authored
Summary: Some machine-type-neutral object files containing only undefined symbols actually do exist in the Windows standard library. Need to recognize them as COFF files. Reviewers: Bigcheese CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2164 llvm-svn: 194734
-
Chad Rosier authored
llvm-svn: 194733
-
Chad Rosier authored
and accumulate instructions. llvm-svn: 194732
-
Ed Maste authored
This failure was due to a limitation in the FreeBSD kernel that has now been addressed. (llvm.org/pr17226 has the details.) llvm-svn: 194731
-
Ed Maste authored
After solving the issue in llvm.org/pr17226 these two tests still fail, now for other reasons. llvm-svn: 194729
-
David Blaikie authored
llvm-svn: 194728
-
Rui Ueyama authored
Writing arguments after the redirection of input ("< somefile") seems a bit strange. Changes the order. llvm-svn: 194727
-
Ed Maste authored
After solving llvm.org/pr17226 these two tests now fail for the same reason they do on Linux. llvm-svn: 194726
-
Marshall Clow authored
Fixed bug in quoted strings implementation. Added test to be sure. Thanks to Peter Sommerlad for the report (and suggested fix) llvm-svn: 194725
-
David Blaikie authored
llvm-svn: 194724
-
Rui Ueyama authored
llvm-svn: 194723
-
Rui Ueyama authored
llvm-svn: 194722
-
Rui Ueyama authored
llvm-svn: 194721
-
Paul Robinson authored
llvm-svn: 194720
-
Dmitri Gribenko authored
llvm-svn: 194719
-
Fariborz Jahanian authored
attributes on 'readonly' properties. // rdar://15460787 llvm-svn: 194718
-
Joey Gouly authored
llvm-svn: 194717
-
Jordan Rose authored
This makes sure the analyzer actually honors assert() in an MSVC project. Patch by Anders Montonen! llvm-svn: 194716
-
Tim Northover authored
We used to perform an invalid operation on an MVT and crash, which wasn't much fun. Patch by Oliver Stannard. llvm-svn: 194714
-
Rafael Espindola authored
On windows we don't print .weak for function definitions, so count was only finding 1 'weak'. llvm-svn: 194713
-
NAKAMURA Takumi authored
llvm-svn: 194712
-
Dmitry Vyukov authored
it does not work anyway and can cause significant slowdown llvm-svn: 194711
-
Argyrios Kyrtzidis authored
This options accepts a path to a directory, collects the filenames of the files it contains, and the migrator will only modify files with the same filename. llvm-svn: 194710
-
Argyrios Kyrtzidis authored
Ignore them when determining if some transformation was enabled. llvm-svn: 194709
-
Manuel Klimek authored
This is implemented in a way that the current static analyzer architecture allows, in the future we might want to revisit this. With this change static analyzer checks are available from clang-tidy by specifying -checks=clang-analyzer-<name>. This change also fixes the use of the compilation database to allow clang-tidy to be used like any other clang tool. llvm-svn: 194707
-
Benjamin Kramer authored
llvm-svn: 194706
-
Rafael Espindola authored
In ELF and COFF an alias is just another offset in a section. There is no way to represent an alias to something in another file. In MachO, the spec has the N_INDR type which should allow for exactly that, but is not currently implemented. Given that it is specified but not implemented, we error in codegen to avoid miscompiling but don't reject aliases to declarations in the verifier to leave the option open of implementing it. In the past we have used alias to declarations as a way of implementing weakref, which is why it exists in some old tests which this patch updates. llvm-svn: 194705
-
Kostya Serebryany authored
[asan] unbreak dfsan, which includes sanitizer/common_interface_defs.h into internal sources (although it shoudn't) llvm-svn: 194704
-