- Nov 14, 2012
-
-
Anton Korobeynikov authored
Do some cleanup of the code while here. Inspired by patch by Logan Chien! llvm-svn: 167904
-
Sean Silva authored
llvm-svn: 167903
-
Anders Carlsson authored
llvm-svn: 167902
-
Nick Lewycky authored
llvm-svn: 167901
-
Eli Friedman authored
Fix an assertion failure printing the unused-label fixit in files using CRLF line endings. <rdar://problem/12639047>. llvm-svn: 167900
-
Richard Smith authored
test was whether the /selected/ operator= was trivial, not whether the class had any trivial (or any non-trivial) operator=s. llvm-svn: 167897
-
John McCall authored
positions of Objective-C methods. It is possible to recover a lot of type information about Objective-C methods from the reflective metadata for their implementations. This information is not rich when it comes to struct types, however, and it is not possible to produce a type in the debugger's round-tripped AST which will really do anything useful during type-checking. Therefore we allow __unknown_anytype in these positions, which essentially disables type-checking for that argument. We infer the parameter type to be the unqualified type of the argument expression unless that expression is an explicit cast, in which case it becomes the type-as-written of that cast. rdar://problem/12565338 llvm-svn: 167896
-
-
Matt Beaumont-Gay authored
llvm-svn: 167894
-
Michael J. Spencer authored
llvm-svn: 167893
-
Nadav Rotem authored
llvm-svn: 167892
-
Matt Beaumont-Gay authored
llvm-svn: 167891
-
Richard Smith authored
Fix typo from code review (thanks to Alexey Samsonov). This is also caught by the existing tests when building for i386. llvm-svn: 167890
-
Richard Smith authored
Darwin. Patch by Jean-Daniel Dupas, tweaked by Jonathan Sauer, simplified somewhat by me. llvm-svn: 167889
-
Richard Smith authored
-fsanitize=undefined: Switch to using sanitizer_common for output. This gets us much closer to not depending on any system headers. llvm-svn: 167888
-
Eric Christopher authored
temporarily since it breaks the gdb bots. This reverts commit r167807/30305bec25cac981c6d4a3b8be004401310a82a7. llvm-svn: 167887
-
Eric Christopher authored
temporarily as it is breaking the gdb bots. This reverts commit r167806/e7ff4c14b157746b3e0228d2dce9f70712d1c126. llvm-svn: 167886
-
Eli Friedman authored
if the type of the value is a non-trivial class type. Fixes PR14318. (There's a minor ObjC++ language change here: given that we can't save the value, the type of the assignment expression is void in such cases.) llvm-svn: 167884
-
Kostya Serebryany authored
llvm-svn: 167883
-
Jim Grosbach authored
llvm-svn: 167882
-
- Nov 13, 2012
-
-
Joe Abbey authored
Assignment of Bitcode ownership to Joe Abbey, after announcing proposal on LLVMdev and not hearing any major objections. Although it did spark a nice discussion regarding what it means to own something in LLVM. llvm-svn: 167881
-
Andrew Trick authored
llvm-svn: 167880
-
Andrew Trick authored
This option will eventually either be enabled unconditionally or replaced by a more general live range splitting optimization. llvm-svn: 167879
-
Nico Weber authored
Integer literal mangling does not actually depend on exact type of the literal. This will simplify calling mangleIntegerLiteral when literal type is not known, for example, when sizes or offsets are mangled as integer literals. Also, call mangleNumber instead of directly printing mangled values of 0/1, to avoid this knowledge from being in multiple places. Patch from Evgeny Eltsin! llvm-svn: 167878
-
Michael J. Spencer authored
llvm-svn: 167877
-
NAKAMURA Takumi authored
Revert r167836, "llvm/test/Other/close-stderr.ll: Mark it as XFAIL:mingw32 for now.", corresponding to r167849. llvm-svn: 167876
-
Ulrich Weigand authored
TLS symbols on PowerPC using the integrated assembler. llvm-svn: 167875
-
Hemant Kulkarni authored
Add program header emission to ELF writer. This patch also rearranges sections for efficient memory utilization llvm-svn: 167874
-
Kaelyn Uhrain authored
attribute to the class' methods even when they return an instance of the class (e.g. assignment operators). llvm-svn: 167873
-
Shankar Easwaran authored
llvm-svn: 167872
-
Shankar Easwaran authored
llvm-svn: 167871
-
Michael J. Spencer authored
llvm-svn: 167869
-
Anna Zaks authored
This simplifies logic, fixes a bug, and adds a test case. Thanks Jordan! llvm-svn: 167868
-
Daniel Dunbar authored
llvm-svn: 167866
-
Ulrich Weigand authored
generate them from PPCELFObjectWriter::getRelocTypeInner as appropriate. llvm-svn: 167864
-
Ulrich Weigand authored
- lwaux - lhzux - stbu llvm-svn: 167863
-
Ulrich Weigand authored
operand field name mismatches in: - AForm_3 (fmul, fmuls) - XFXForm_5 (mtcrf) - XFLForm (mtfsf) llvm-svn: 167862
-
Ulrich Weigand authored
by using a new instruction format BForm_1. llvm-svn: 167861
-
Ulrich Weigand authored
using a new instruction format AForm_4. llvm-svn: 167860
-
Manman Ren authored
chain is correctly setup. As an example, if the original load must happen before later stores, we need to make sure the constructed VZEXT_LOAD is constrained to be before the stores. rdar://12684358 llvm-svn: 167859
-