- Feb 14, 2013
-
-
Tobias Grosser authored
llvm-svn: 175178
-
Tobias Grosser authored
llvm-svn: 175177
-
Tim Northover authored
llvm-svn: 175176
-
Tim Northover authored
llvm-svn: 175175
-
Tobias Grosser authored
llvm-svn: 175174
-
Rafael Espindola authored
llvm-svn: 175173
-
Tim Northover authored
If vector types have legal register classes, then LLVM bypasses LegalizeTypes on them, which causes faults currently since the code to handle them isn't in place. This fixes test failures when AArch64 is the default target. llvm-svn: 175172
-
Tobias Grosser authored
llvm-svn: 175171
-
Tobias Grosser authored
This command runs clang-format on all files and reports formatting problems llvm-svn: 175170
-
Tim Northover authored
Only comments affected. No code change at all. llvm-svn: 175169
-
Krzysztof Parzyszek authored
llvm-svn: 175168
-
David Chisnall authored
Patch by Jonathan Anderson! llvm-svn: 175167
-
Rafael Espindola authored
llvm-svn: 175166
-
Daniel Jasper authored
Before: aaaaaaaaaaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa() .aaaaaaaaaaaaaaaaa()); After: aaaaaaaaaaaaaaaaaaaaaaaaa( aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa().aaaaaaaaaaaaaaaaa()); Not sure which of the formattings above is better, but we should not pick one by accident. llvm-svn: 175165
-
Kristof Beyls authored
The parser will now accept instructions with alignment specifiers written like vld1.8 {d16}, [r0:64] , while also still accepting the incorrect syntax vld1.8 {d16}, [r0, :64] llvm-svn: 175164
-
Evgeniy Stepanov authored
/proc/$PID/cmdline is clipped to 4Kb. Locate argv and envp on the main thread stack. llvm-svn: 175163
-
Daniel Jasper authored
This gives a clearer separation of the context, e.g. in GMOCK statements. Before: EXPECT_CALL(SomeObject, SomeFunction(Parameter)).WillRepeatedly(Return(SomeValue)); After: EXPECT_CALL(SomeObject, SomeFunction(Parameter)) .WillRepeatedly(Return(SomeValue)); Minor format cleanups. llvm-svn: 175162
-
Dmitri Gribenko authored
llvm-svn: 175161
-
Dmitri Gribenko authored
llvm-svn: 175160
-
Dmitri Gribenko authored
llvm-svn: 175159
-
Dmitry Vyukov authored
llvm-svn: 175158
-
Alexander Potapenko authored
llvm-svn: 175157
-
Evgeniy Stepanov authored
llvm-svn: 175156
-
Alexander Potapenko authored
The test may hang now if a regression occurs. llvm-svn: 175155
-
Dmitry Vyukov authored
llvm-svn: 175153
-
Daniel Jasper authored
So far, clang-format has always assumed the whitespace belonging to the subsequent token. This has the negative side-effect that when clang-format formats a line, it does not remove its trailing whitespace, as it belongs to the next token. Thus, this patch fixes most of llvm.org/PR15062. We are not zapping a file's trailing whitespace so far, as this does not belong to any token we see during formatting. We need to fix this in a subsequent patch. llvm-svn: 175152
-
Daniel Jasper authored
The formatter can now format: void aaaaaaaaaaaaaaaaaa(int level, double *min_x, double *max_x, double *min_y, double *max_y, double *min_z, double *max_z, ) { } Although this is invalid code, it frequently happens during development and clang-format should be nicer :-). llvm-svn: 175151
-
Elena Demikhovsky authored
llvm-svn: 175150
-
Owen Anderson authored
Add some legality checks for SETCC before introducing it in the DAG combiner post-operand legalization. llvm-svn: 175149
-
Daniel Jasper authored
llvm-svn: 175148
-
Daniel Jasper authored
This fixes llvm.org/PR15179. Before: class ColorChooserMac : public content::ColorChooser, public content::WebContentsObserver { }; After: class ColorChooserMac : public content::ColorChooser, public content::WebContentsObserver { }; llvm-svn: 175147
-
Elena Demikhovsky authored
llvm-svn: 175146
-
Evgeniy Stepanov authored
We are still limited by /proc/*/cmdline size (4Kb max on Linux!). llvm-svn: 175145
-
Elena Demikhovsky authored
Added a test. llvm-svn: 175144
-
Bill Wendling authored
llvm-svn: 175143
-
Kostya Serebryany authored
[asan] use short path for sanitizer_common/tests/sanitizer_test_utils.h, add -I sanitizer_common/tests to asan/tests/CMakeLists.txt llvm-svn: 175142
-
Bill Wendling authored
The code generation stuff is going to set attributes on the functions it generates. To do that it needs the target options. Pass them through. llvm-svn: 175141
-
Kostya Serebryany authored
llvm-svn: 175140
-
Michel Danzer authored
Fixes assertion failure in newly added lit test. Might just be a bandaid that needs to be revisited. llvm-svn: 175139
-
Michel Danzer authored
Reviewed-by:
Tom Stellard <thomas.stellard@amd.com> llvm-svn: 175138
-