- Apr 21, 2014
-
-
Reid Kleckner authored
The -tailcallelim pass should be checking if byval or inalloca args can be captured before marking calls as tail calls. This was the real root cause of PR7272. With a better fix in place, revert the inliner change from r105255. The test case it introduced still passes and has been moved to test/Transforms/Inline/byval-tail-call.ll. Reviewers: chandlerc Differential Revision: http://reviews.llvm.org/D3403 llvm-svn: 206789
-
David Blaikie authored
llvm-svn: 206788
-
Ed Maste authored
llvm-svn: 206787
-
David Blaikie authored
llvm-svn: 206786
-
David Blaikie authored
llvm-svn: 206785
-
David Blaikie authored
llvm-svn: 206784
-
Timur Iskhodzhanov authored
Intentionally duplicate base class definitions per test, so it's easier to copy tests while debugging failures. llvm-svn: 206782
-
Fariborz Jahanian authored
objects to fund root class's instance methods. // rdar://16650575 llvm-svn: 206781
-
David Blaikie authored
Requires switching some vectors to lists to maintain pointer validity. These could be changed to forward_lists (singly linked) with a bit more work - I've left comments to that effect. llvm-svn: 206780
-
Filipe Cabecinhas authored
Summary: The INSERTPS pattern fragment was called insrtps (mising 'e'), which would make it harder to grep for the patterns related to this instruction. Renaming it to use the proper instruction name. Reviewers: nadav CC: llvm-commits Differential Revision: http://reviews.llvm.org/D3443 llvm-svn: 206779
-
Chandler Carruth authored
cpp file rather than in the header and then again in the cpp file. llvm-svn: 206778
-
Chandler Carruth authored
header files and into the cpp files. These files will require more touches as the header files actually use DEBUG(). Eventually, I'll have to introduce a matched #define and #undef of DEBUG_TYPE for the header files, but that comes as step N of many to clean all of this up. llvm-svn: 206777
-
Ben Langmuir authored
If the module is unavailable because of a missing header, don't diagnose a "module * {}" declaration for having a missing umbrella. llvm-svn: 206776
-
Chandler Carruth authored
various .cpp files. This macro is inherently non-modular, and it wasn't even needed in this header file. llvm-svn: 206775
-
Yi Jiang authored
llvm-svn: 206774
-
Jim Grosbach authored
Tentative revert for http://lab.llvm.org:8011/builders/llvm-mips-linux/builds/8305. This reverts commit c2a58efff07294fca724f89500538f2ddbcd12ff. llvm-svn: 206773
-
Matt Arsenault authored
llvm-svn: 206772
-
Duncan P. N. Exon Smith authored
Change `PositiveFloat` to `UnsignedFloat`, and fix some of the comments to indicate that it's disappearing eventually. llvm-svn: 206771
-
Marshall Clow authored
llvm-svn: 206770
-
Jim Grosbach authored
llvm-svn: 206769
-
Jim Grosbach authored
llvm-svn: 206768
-
Jim Grosbach authored
llvm-svn: 206767
-
Duncan P. N. Exon Smith authored
This reverts commit r206707, reapplying r206704. The preceding commit to CalcSpillWeights should have sorted out the failing buildbots. <rdar://problem/14292693> llvm-svn: 206766
-
Duncan P. N. Exon Smith authored
This gross hack forces `hweight` into memory, preventing hidden precision from making `1 > 1` occasionally equal `true`. <rdar://problem/14292693> llvm-svn: 206765
-
Sylvestre Ledru authored
llvm-svn: 206764
-
Eli Bendersky authored
Use volatile store to protect the generated PTX from DCE. Patch by Jingyue Wu. llvm-svn: 206763
-
Todd Fiala authored
Our build is still getting this test to fail with the presence of const in '(Foo &const) y = 0x' and '(Foo &&const) z = 0x'. This change simply changes the match substrings to ignore the portion after the final '&' and before the closing ')'. This should cover the presence (or absence) of the const qualifier. llvm-svn: 206762
-
Ed Maste authored
The underlying issue was actually a Clang bug, now fixed. The test now reports XPASS for me locally and on the buildbot. llvm.org/pr17183 (LLDB) llvm.org/pr18950 (Clang) llvm-svn: 206761
-
Ed Maste authored
Perhaps these should be @expectedFailureDarwin instead of @unittest2.expectedFailure (applying to all hosts); I'm not aware of the details in the rdars. Just add a comment for now, for the benefit of anyone investigating FreeBSD test issues in the future. rdar://9980907 rdar://15367233 llvm-svn: 206760
-
Evgeniy Stepanov authored
llvm-svn: 206759
-
NAKAMURA Takumi authored
It can be reverted a few days later, after X86Disassembler.d is updated not to contain "X86Disassembler.c". llvm-svn: 206758
-
Ed Maste authored
I am not sure if this is due to an LLDB change, or the fact that FreeBSD now has Clang 3.4. llvm.org/pr19075 llvm-svn: 206757
-
Kostya Serebryany authored
llvm-svn: 206756
-
Evgeniy Stepanov authored
llvm-svn: 206755
-
Dmitry Vyukov authored
ocasionally it fails with a slightly different report: WARNING: ThreadSanitizer: signal handler spoils errno (pid=3674) #0 MyHandler(int, siginfo*, void*) ... #4 __tsan_free_hook #5 main signal_errno.cc:40 llvm-svn: 206754
-
Kostya Serebryany authored
llvm-svn: 206753
-
Ted Kremenek authored
llvm-svn: 206752
-
Ed Maste authored
The additional "const" breaks the FreeBSD buildbot, and does not appear to be due to a LLVM or Clang change. Revert the change while investigating further. This reverts revision 206619. llvm-svn: 206751
-
Rafael Espindola authored
We normally don't drop functions from the C API's, but in this case I think we can: * The old implementation of getFileOffset was fairly broken * The introduction of LLVMGetSymbolFileOffset was itself a C api breaking change as it removed LLVMGetSymbolOffset. * It is an incredibly specialized use case. The only reason MCJIT needs it is because of its odd position of being a dynamic linker of .o files. llvm-svn: 206750
-
Michael Zolotukhin authored
llvm-svn: 206749
-