- Aug 05, 2015
-
-
Andrey Churbanov authored
llvm-svn: 244031
-
Andrey Churbanov authored
llvm-svn: 244030
-
Artyom Skrobov authored
return StringSwitch<int>(Flags) .Case("g", 0x1) .Case("nzcvq", 0x2) .Case("nzcvqg", 0x3) .Default(-1); ... // The _g and _nzcvqg versions are only valid if the DSP extension is // available. if (!Subtarget->hasThumb2DSP() && (Mask & 0x2)) return -1; ARMARM confirms that the comment is right, and the code was wrong. llvm-svn: 244029
-
Benjamin Kramer authored
llvm-svn: 244028
-
Benjamin Kramer authored
llvm-svn: 244027
-
Benjamin Kramer authored
llvm-svn: 244026
-
Benjamin Kramer authored
llvm-svn: 244025
-
Benjamin Kramer authored
llvm-svn: 244024
-
Benjamin Kramer authored
llvm-svn: 244023
-
Simon Pilgrim authored
llvm-svn: 244022
-
Simon Pilgrim authored
llvm-svn: 244021
-
Hal Finkel authored
In r242277, I updated the MachineCombiner to work with itineraries, but I missed a call that is scheduling-model-only (the opcode-only form of computeInstrLatency). Using the form that takes an MI* allows this to work with itineraries (and should be NFC for subtargets with scheduling models). llvm-svn: 244020
-
Davide Italiano authored
Previously we kept going on partly corrupted input, which might result in garbage being printed, or even worse, random crashes. Rafael mentioned that this is the GNU behavior as well, but after some discussion we both agreed it's probably better to emit a reasonable error message and exit. As a side-effect of this commit, now we don't rely on global state for error codes anymore. objdump was the last tool in the toolchain which needed to be converted. Hopefully the old behavior won't sneak into the tree again. llvm-svn: 244019
-
Filipe Cabecinhas authored
llvm-svn: 244018
-
NAKAMURA Takumi authored
For example of mingw-w64-g++-4.8.1, llvm/unittests/ADT/ArrayRefTest.cpp: In member function 'virtual void {anonymous}::ArrayRefTest_AllocatorCopy_Test::TestBody()': llvm/unittests/ADT/ArrayRefTest.cpp:56:40: internal compiler error: in count_type_elements, at expr.c:5523 } Array3Src[] = {{"hello"}, {"world"}}; ^ Please submit a full bug report, with preprocessed source if appropriate. llvm-svn: 244017
-
NAKAMURA Takumi authored
llvm-svn: 244016
-
Eric Christopher authored
Add a comment explaining the current theory as to why we'd need the -lole32 on the link line. llvm-svn: 244015
-
Eric Christopher authored
be unused. llvm-svn: 244014
-
Eric Christopher authored
llvm-svn: 244013
-
Eric Christopher authored
it anymore. llvm-svn: 244012
-
Eric Christopher authored
llvm-svn: 244011
-
Tanya Lattner authored
llvm-svn: 244009
-
Tanya Lattner authored
llvm-svn: 244008
-
Tanya Lattner authored
llvm-svn: 244007
-
Tanya Lattner authored
llvm-svn: 244006
-
Tanya Lattner authored
llvm-svn: 244005
-
Tanya Lattner authored
llvm-svn: 244004
-
Tanya Lattner authored
llvm-svn: 244003
-
Tanya Lattner authored
llvm-svn: 244002
-
Tanya Lattner authored
llvm-svn: 244001
-
Tanya Lattner authored
llvm-svn: 244000
-
Tanya Lattner authored
llvm-svn: 243999
-
- Aug 04, 2015
-
-
Yaron Keren authored
As documented in the LLVM Coding Standards, indeed MSVC incorrectly asserts on this in Debug mode. This happens when building clang with Visual C++ and -triple i686-pc-windows-gnu on these clang regression tests: clang/test/CodeGen/2011-03-08-ZeroFieldUnionInitializer.c clang/test/CodeGen/empty-union-init.c llvm-svn: 243996
-
Benjamin Kramer authored
std::copy does not work for non-trivially copyable classes when we're copying into uninitialized memory. llvm-svn: 243995
-
Sanjay Patel authored
Create wrapper methods in the Function class for the OptimizeForSize and MinSize attributes. We want to hide the logic of "or'ing" them together when optimizing just for size (-Os). Currently, we are not consistent about this and rely on a front-end to always set OptimizeForSize (-Os) if MinSize (-Oz) is on. Thus, there are 18 FIXME changes here that should be added as follow-on patches with regression tests. This patch is NFC-intended: it just replaces existing direct accesses of the attributes by the equivalent wrapper call. Differential Revision: http://reviews.llvm.org/D11734 llvm-svn: 243994
-
Rafael Espindola authored
The writer is still hard coded to 64 bits le, but with this we can test for invalid ELF files. llvm-svn: 243993
-
Benjamin Kramer authored
llvm-svn: 243992
-
Hal Finkel authored
Begin adapting some of the implemented PPC64 relocations for PPC32 (with a test case). Patch by Pierre-Andre Saulais! llvm-svn: 243991
-
Sanjay Patel authored
In the commentary for D11660, I wasn't sure if it was alright to create new integer machine instructions without also creating the implicit EFLAGS operand. From what I can see, the implicit operand is always created by the MachineInstrBuilder based on the instruction type, so we don't have to do that explicitly. However, in reviewing the debug output, I noticed that the operand was not marked as 'dead'. The machine combiner should do that to preserve future optimization opportunities that may be checking for that dead EFLAGS operand themselves. Differential Revision: http://reviews.llvm.org/D11696 llvm-svn: 243990
-
Benjamin Kramer authored
It's not valid code (maybe it can be made valid, but I'm not sure how). To trigger the crash fixed in r243987 requires a friend function with more than four template parameter lists. With this test we have at least some coverage. llvm-svn: 243989
-