- Jan 10, 2013
-
-
Kostya Serebryany authored
llvm-svn: 172069
-
Kostya Serebryany authored
llvm-svn: 172068
-
Manuel Klimek authored
void f() {} now gets formatted in one line. llvm-svn: 172067
-
Daniel Jasper authored
llvm-svn: 172066
-
Daniel Jasper authored
Before: int (^myBlock) (int) = ^(int num) {} A<void ()>; int (*b)(int); After: int (^myBlock)(int) = ^(int num) {} A<void()>; int(*b)(int); For function types and function pointer types, this patch only makes the behavior consistent (for types that are keywords and other types). For the latter function pointer type declarations, we'll probably want to add a space after "int". Also added LangOpts.Bool = 1, so we handle "A<bool()>" appropriately Moved the LangOpts-settings to a public place for use by tests and clang-format binary. llvm-svn: 172065
-
Dmitry Vyukov authored
llvm-svn: 172064
-
Kostya Serebryany authored
llvm-svn: 172063
-
Simon Atanasyan authored
the backend if hard float ABI is selected under -mips16 mode. llvm-svn: 172062
-
Kostya Serebryany authored
llvm-svn: 172061
-
Dmitry Vyukov authored
llvm-svn: 172060
-
Kostya Serebryany authored
llvm-svn: 172059
-
Manuel Klimek authored
Previously, we would not indent: SOME_MACRO({ int i; }); correctly. This is fixed by adding the trailing }); to the unwrapped line starting with SOME_MACRO({, so the formatter can correctly match the braces and indent accordingly. Also fixes incorrect parsing of initializer lists, like: int a[] = { 1 }; llvm-svn: 172058
-
Evgeniy Stepanov authored
llvm-svn: 172057
-
Daniel Jasper authored
This fixes llvm.org/PR14684. Before: int *pa = (int *) & a; After: int *pa = (int *)&a; We still don't understand all kinds of casts. I added a FIXME to address that. llvm-svn: 172056
-
Evgeniy Stepanov authored
llvm-svn: 172055
-
Joey Gouly authored
llvm-svn: 172054
-
David Tweed authored
version of a test by Joey Gouly to use attributes to materialise the unsupported types and test vector shifts. llvm-svn: 172053
-
Guy Benyei authored
Enable intel_ocl_bicc for x86_64 target only. Remove fix from 171969 that enabled this extension for multiple targets. llvm-svn: 172052
-
Joey Gouly authored
llvm-svn: 172051
-
Manuel Klimek authored
After re-writing the same loop multiple times, we deicided it's time to add this as an optional debugging help. llvm-svn: 172050
-
Daniel Jasper authored
This fixes llvm.org/PR14883, where clang-format would run into an assertion on: void f() { return } 42 llvm-svn: 172049
-
Kostya Serebryany authored
[asan] asan_allocator2: do less work under the quarantine lock; make the strcasecmp test more resistant to the contents of unaddressable memory llvm-svn: 172048
-
David Tweed authored
difference between type widths of a vector and the width of one of its elements in the case of vector shifts. Use correct witdth in the vector case. llvm-svn: 172047
-
Sean Silva authored
PR14889 llvm-svn: 172046
-
Kostya Serebryany authored
llvm-svn: 172045
-
NAKAMURA Takumi authored
llvm-svn: 172044
-
Alex Rosenberg authored
llvm-svn: 172043
-
Alex Rosenberg authored
llvm-svn: 172042
-
Will Dietz authored
Fixes using ubsan on shared libraries in linux, for example. llvm-svn: 172041
-
Shankar Easwaran authored
llvm-svn: 172040
-
rdar://problem/11146929Enrico Granata authored
Enabling support for the wchar_t type. Without the proper language option setup, clang's ASTContexts will be configured to have wchar_t == int This patch enables the correct options to make sure that we report wchar_t as itself Added a test case to make sure we do not regress Adding files missing from the previous commit llvm-svn: 172039
-
rdar://problem/11146929Enrico Granata authored
Enabling support for the wchar_t type. Without the proper language option setup, clang's ASTContexts will be configured to have wchar_t == int This patch enables the correct options to make sure that we report wchar_t as itself Added a test case to make sure we do not regress llvm-svn: 172038
-
NAKAMURA Takumi authored
llvm-svn: 172037
-
Douglas Gregor authored
llvm-svn: 172035
-
Michael Gottesman authored
llvm-svn: 172034
-
Douglas Gregor authored
gone, check for the actual file we care about. llvm-svn: 172033
-
Douglas Gregor authored
failing to create the unique file because the path doesn't exist, don't fail if someone else manages to create the path before we do. llvm-svn: 172032
-
Nick Lewycky authored
PR14825! llvm-svn: 172031
-
Douglas Gregor authored
uniformly with symlinks between top-level and embedded frameworks. llvm-svn: 172030
-
Jakob Stoklund Olesen authored
This function can still work without a BUNDLE header instruction. llvm-svn: 172029
-