- Oct 11, 2016
-
-
Rui Ueyama authored
llvm-svn: 283910
-
NAKAMURA Takumi authored
ARMMachineFunctionInfo.cpp: Add an initializer of ARMFunctionInfo::ReturnRegsCount in the explicit ctor. It caused crash since r283867. llvm-svn: 283909
-
NAKAMURA Takumi authored
llvm-svn: 283908
-
Justin Lebar authored
These were reverted in r283753 and r283747. The first patch added a header to the root 'Headers' install directory, instead of into 'Headers/cuda_wrappers'. This was fixed in the second patch, but by then the damage was done: The bad header stayed in the 'Headers' directory, continuing to break the build. We reverted both patches in an attempt to fix things, but that still didn't get rid of the header, so the Windows boostrap build remained broken. It's probably worth fixing up our cmake logic to remove things from the install dirs, but in the meantime, re-land these patches, since we believe they no longer have this bug. llvm-svn: 283907
-
Reid Kleckner authored
llvm-svn: 283906
-
Sanjay Patel authored
This enhances the fold added with: https://reviews.llvm.org/rL283900 llvm-svn: 283905
-
Sean Callanan authored
llvm-svn: 283904
-
Sanjay Patel authored
llvm-svn: 283903
-
Bernard Ogden authored
Differential Revision: https://reviews.llvm.org/D25471 llvm-svn: 283902
-
Bernard Ogden authored
Summary: This test is allowed to run on non-x86 hosts and thus must use llvm-nm rather than nm. Differential Revision: https://reviews.llvm.org/D25473 llvm-svn: 283901
-
Sanjay Patel authored
The non-obvious motivation for adding this fold (which already happens in InstCombine) is that we want to canonicalize IR towards select instructions and canonicalize DAG nodes towards boolean math. So we need to recreate some folds in the DAG to handle that change in direction. An interesting implementation difference for cases like this is that InstCombine generally works top-down while the DAG goes bottom-up. That means we need to detect different patterns. In this case, the SimplifyDemandedBits fold prevents us from performing a zext to sext fold that would then be recognized as a negation of a sext. llvm-svn: 283900
-
Daniel Jasper authored
llvm-svn: 283899
-
Adam Nemet authored
llvm-svn: 283898
-
Adam Nemet authored
llvm-svn: 283897
-
Adam Nemet authored
llvm-svn: 283896
-
Zachary Turner authored
A recent change to llvm::cl slightly changed the format of the help output, and it broke this test. NFC llvm-svn: 283895
-
Sanjay Patel authored
llvm-svn: 283894
-
Changpeng Fang authored
Differential Revision: http://reviews.llvm.org/D25454 Reviewers: tstellarAMD llvm-svn: 283893
-
Zachary Turner authored
Previously we would print USAGE: <exe> [subcommand] [options] Even if no subcommands were present. This changes the output format to only print "[subcommand]" if there is at least one subcommand. Fixes llvm.org/pr30598 Patch by Serge Guelton llvm-svn: 283892
-
Yaxun Liu authored
Currently Clang allows partial initializer for C99 but not for OpenCL, e.g. float a[16][16] = {1.0f, 2.0f}; is allowed in C99 but not allowed in OpenCL. This patch fixes that. Differential Revision: https://reviews.llvm.org/D25335 llvm-svn: 283891
-
Vassil Vassilev authored
llvm-svn: 283890
-
Davide Italiano authored
While here, fix the CHECK lines of an existing test. llvm-svn: 283889
-
Mehdi Amini authored
llvm-svn: 283888
-
Vassil Vassilev authored
llvm-svn: 283887
-
Malcolm Parsons authored
Summary: Empty/incomplete variables/members/bases don't need to be initialized Reviewers: mgehre, aaron.ballman, alexfh Subscribers: nemanjai, cfe-commits Differential Revision: https://reviews.llvm.org/D25238 llvm-svn: 283886
-
Sanjay Patel authored
llvm-svn: 283885
-
Sanjay Patel authored
llvm-svn: 283884
-
Simon Pilgrim authored
Added 32-bit target test llvm-svn: 283883
-
Vassil Vassilev authored
https://reviews.llvm.org/D24508 Patch developed in collaboration with Richard Smith! llvm-svn: 283882
-
Simon Pilgrim authored
llvm-svn: 283881
-
Simon Pilgrim authored
To make it more obvious how bad some of that truncation code is.... llvm-svn: 283880
-
Haojian Wu authored
Summary: * Fix a false postive when an using class is used in an explicit template instantiation. * Fix a false postive when an using template class is used as template argument. Reviewers: aaron.ballman Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D25437 llvm-svn: 283879
-
Sanjay Patel authored
llvm-svn: 283878
-
Igor Laevsky authored
For each block check that it doesn't have any uses outside of it's innermost loop. Differential Revision: https://reviews.llvm.org/D25364 llvm-svn: 283877
-
Sanjay Patel authored
llvm-svn: 283876
-
Malcolm Parsons authored
Summary: Bugfix for 30398. Don't warn for template instantiations Reviewers: aaron.ballman, hokein, alexfh Subscribers: omtcyfz, cfe-commits Differential Revision: https://reviews.llvm.org/D24652 llvm-svn: 283873
-
George Rimar authored
Docs for reference: http://man.openbsd.org/OpenBSD-current/man5/elf.5 https://github.com/openbsd/src/commit/2a5a8fc7e30928c2cff57cfe5fb491c90d8478ad llvm-svn: 283872
-
Pavel Labath authored
MSVC does not like the declaration of a terminate() function (I guess it looks too much like std::terminate()). While I'm there, move the setup/teardown code into the functions gtest provides for that purpose. llvm-svn: 283870
-
Malcolm Parsons authored
Summary: Only member initializers that are written should prevent using '= default' on a default constructor. Reviewers: klimek, sbenza, aaron.ballman, alexfh Subscribers: Eugene.Zelenko, alexfh, klimek, cfe-commits Differential Revision: https://reviews.llvm.org/D24444 llvm-svn: 283869
-
Renato Golin authored
This reverts commit r283827, as it's breaking all ARM/AARch64 bots. llvm-svn: 283868
-