- Nov 03, 2013
-
-
Venkatraman Govindaraju authored
llvm-svn: 193941
-
Bob Wilson authored
Patch by Pete Cooper. llvm-svn: 193940
-
Filip Pizlo authored
llvm-svn: 193939
-
Alp Toker authored
r102230 added an 'echo' making this a no-op. Also fixes FAIL on native Windows with no shell/GnuWin32. llvm-svn: 193938
-
Filip Pizlo authored
When LLVM is embedded in a larger application, it's not OK for LLVM to intercept crashes. LLVM already has the ability to disable this functionality. This patch exposes it via the C API. llvm-svn: 193937
-
David Majnemer authored
llvm-svn: 193936
-
Bob Wilson authored
rdar://13973577 Patch by Fariborz Jahanian. llvm-svn: 193935
-
Bob Wilson authored
llvm-svn: 193934
-
- Nov 02, 2013
-
-
Rafael Espindola authored
llvm-svn: 193933
-
Rafael Espindola authored
llvm-svn: 193932
-
Rafael Espindola authored
This is a fixed version of 193928 which keeps these uses in sync. llvm-svn: 193931
-
Rafael Espindola authored
Investigating a bot failure. This reverts commit r193928. llvm-svn: 193929
-
Rafael Espindola authored
llvm-svn: 193928
-
Benjamin Kramer authored
llvm-svn: 193927
-
Benjamin Kramer authored
Doing this with a hash map doesn't change behavior and avoids calling isIdenticalTo O(n^2) times. This should probably eventually move into a utility class shared with EarlyCSE and the limited CSE in the SLPVectorizer. llvm-svn: 193926
-
Tobias Grosser authored
For for-nodes that are translated to a set of vector lanes, we already know the overall number of iterations. Calculating the upper bound is consequently not necessary. This change removes the code for upper bound calculation, which was probably copy/pasted from the code generation for the normal for-loop. This issue was found by Sylvestre's scan-build server. llvm-svn: 193925
-
David Majnemer authored
llvm-svn: 193924
-
David Majnemer authored
Flexible array members inherently index off of the end of their parent type. We shouldn't allow this type to be used as a base, virtual or otherwise, because indexing off the end may find us inside of another base or the derived types members. llvm-svn: 193923
-
David Majnemer authored
llvm-svn: 193922
-
David Majnemer authored
llvm-svn: 193921
-
David Majnemer authored
Flexible array members only work out if they are the last field of a record, however virtual bases would give us many situations where the flexible array member would overlap with the virtual base fields. It is unlikely in the extreme that this behavior was intended by the user so raise a diagnostic instead of accepting. This is will not reject conforming code because flexible array members are an extension in C++ mode. llvm-svn: 193920
-
David Majnemer authored
The determination of which diagnostics would be issued for certain anonymous unions started to get a little ridiculous. Clean this up by inverting the condition-tree's logic from dialect -> issue to issue -> diagnostic. As part of this cleanup, move ext_c99_flexible_array_member from DiagnosticParseKinds.td to DiagnosticSemaKinds.td because it's driven by Sema, not Parse. Also, the liberty was taken to edit ext_c99_flexible_array_member to match other, similar, diagnostics. llvm-svn: 193919
-
David Majnemer authored
The declaration of a flexible array member was correctly diagnosed as an extension in C89 mode but not in C++. llvm-svn: 193918
-
David Majnemer authored
llvm-svn: 193917
-
David Majnemer authored
llvm-svn: 193916
-
Rafael Espindola authored
llvm-svn: 193915
-
Rafael Espindola authored
llvm-svn: 193914
-
Rafael Espindola authored
llvm-svn: 193913
-
Rafael Espindola authored
There is still a long way to go for llvm-nm, but at least we now match nm's letter output in the cases we test for. llvm-svn: 193912
-
Rui Ueyama authored
llvm-svn: 193911
-
Rui Ueyama authored
These tests assume that the created objects are for x86_64. These tests failed on non-x86_64 environments, such as 32 bit Windows. llvm-svn: 193910
-
Rui Ueyama authored
n_desc field in MachO string table was not initialized. On Unix, test/darwin/hello-world.objtxt did not fail because I think an nlist object is always allocated to a fresh heap initialized with zeros. On Windows, uninitialized fields are filled with 0xCC when compiled with /GZ. Because of that the test was failing on Windows. llvm-svn: 193909
-
NAKAMURA Takumi authored
- Don't seek "entry:" It dosen't appear with -Asserts. - Take care that Codegen'ed Instruction(s) wouldn't have name(s) in -Asserts. llvm-svn: 193908
-
Jason Molenda authored
defines a protocol that all subclasses will implement. StackFrame is currently the only subclass and the methods that Frame vends are nearly identical to StackFrame's old methods. Update all callers to use Frame*/Frame& instead of pointers to StackFrames. This is almost entirely a mechanical change that touches a lot of the code base so I'm committing it alone. No new functionality is added with this patch, no new subclasses of Frame exist yet. I'll probably need to tweak some of the separation, possibly moving some of StackFrame's methods up in to Frame, but this is a good starting point. <rdar://problem/15314068> llvm-svn: 193907
-
Richard Trieu authored
specializations. Also switch to -Wuninitialized for a test case that depended on a warning firing in template specializations. llvm-svn: 193906
-
Rui Ueyama authored
On Windows, neither "(" nor ")" are shell special characters, so -\( is passed as-is to LLD. Because of that this test was failing on Windows. llvm-svn: 193905
-
Rui Ueyama authored
This patch adds "-target x86_64" to the command line. Without this option, a 32 bit object file would be created on 32 bit machine, resulting in test failure. llvm-svn: 193904
-
Evgeniy Stepanov authored
llvm-svn: 193903
-
Warren Hunt authored
llvm-svn: 193902
-
Warren Hunt authored
long in linux 64 is 64 bits but is always 32 bits on windows. The lit test was modified to use long long instead of long and check for 64-bit mangling. llvm-svn: 193901
-