- Mar 19, 2013
-
-
Jordan Rose authored
(see previous commit) llvm-svn: 177449
-
Chad Rosier authored
llvm-svn: 177441
-
Fariborz Jahanian authored
closing rbrace is missing in an ObjC class declaration. Can do beter than this, but it involves addition of overhead which will be present in correct code. // rdar://6854840 llvm-svn: 177435
-
Adrian Prantl authored
Relax test to allow for attributes on other architectures. Caught by powerpc64-unknown-linux-gnu buildbot. llvm-svn: 177419
-
Chad Rosier authored
llvm-svn: 177414
-
Rafael Espindola authored
llvm-svn: 177402
-
Rafael Espindola authored
-no-integrated-as. It is the only assembler we have there. llvm-svn: 177398
-
Alexey Samsonov authored
llvm-svn: 177391
-
John McCall authored
we expect a related result type. rdar://12493140 llvm-svn: 177378
-
rdar://problem/13363214Douglas Gregor authored
<rdar://problem/13363214> Eliminate race condition between module rebuild and the global module index. The global module index was querying the file manager for each of the module files it knows about at load time, to prune out any out-of-date information. The file manager would then cache the results of the stat() falls used to find that module file. Later, the same translation unit could end up trying to import one of the module files that had previously been ignored by the module cache, but after some other Clang instance rebuilt the module file to bring it up-to-date. The stale stat() results in the file manager would trigger a second rebuild of the already-up-to-date module, causing failures down the line. The global module index now lazily resolves its module file references to actual AST reader module files only after the module file has been loaded, eliminating the stat-caching race. Moreover, the AST reader can communicate to its caller that a module file is missing (rather than simply being out-of-date), allowing us to simplify the module-loading logic and allowing the compiler to recover if a dependent module file ends up getting deleted. llvm-svn: 177367
-
Richard Smith authored
it wasn't taking into account that the float should be truncated *before* the range check happens. Thus (unsigned)-0.99 and (unsigned char)255.9 have defined behavior and should not be trapped. llvm-svn: 177362
-
Argyrios Kyrtzidis authored
llvm-svn: 177359
-
Fariborz Jahanian authored
top-level HeaderDoc tags @functiongroup and @methodgroup to doc. tags recognized. // rdar://12379114 llvm-svn: 177358
-
Richard Smith authored
llvm-svn: 177354
-
Chad Rosier authored
llvm-svn: 177349
-
David Blaikie authored
The previous implementation missed the case where the elif condition was evaluated from the context of an #ifdef that was false causing PR15539. llvm-svn: 177345
-
Bill Wendling authored
llvm-svn: 177344
-
- Mar 18, 2013
-
-
Argyrios Kyrtzidis authored
Issue reported by Tom Honermann! http://llvm.org/bugs/show_bug.cgi?id=15377 llvm-svn: 177336
-
Richard Smith authored
Add missing diagnostic for a nested-name-specifier on a free-standing type definition. Bump some related diagnostics from warning to extension in C++, since they're errors there. Add some missing checks for function specifiers on non-function declarations. llvm-svn: 177335
-
Argyrios Kyrtzidis authored
Report and suggested fix by Tom Honermann! http://llvm.org/bugs/show_bug.cgi?id=13020 llvm-svn: 177330
-
Richard Smith authored
reports, and implement implicit definition of inheriting constructors. Remaining missing features: inheriting constructor templates, implicit exception specifications for inheriting constructors, inheriting constructors from dependent bases. llvm-svn: 177320
-
Anna Zaks authored
llvm-svn: 177318
-
Fariborz Jahanian authored
into the pre-preprocessed file to be passed to modern translator when compiling in no debug mode. // rdar://13138170 llvm-svn: 177311
-
Anton Korobeynikov authored
Patch by Andrew Turner! llvm-svn: 177252
-
- Mar 17, 2013
-
-
David Blaikie authored
Checking for the annotation comment rather than the metadata values makes these tests resilient to a coming refactor that will pull these fields out into a separate metadata node. llvm-svn: 177237
-
- Mar 16, 2013
-
-
Manman Ren authored
llvm-svn: 177222
-
Jordan Rose authored
r175234 allowed the analyzer to model trivial copy/move constructors as an aggregate bind. This commit extends that to trivial assignment operators as well. Like the last commit, one of the motivating factors here is not warning when the right-hand object is partially-initialized, which can have legitimate uses. <rdar://problem/13405162> llvm-svn: 177220
-
Argyrios Kyrtzidis authored
Thanks to Richard S. for pointing out that the warning would show up with -Weverything. llvm-svn: 177218
-
Manman Ren authored
For constructors/desctructors that return 'this', if there exists a callsite that returns 'this' and is immediately before the return instruction, make sure we are using the return value from the callsite. We don't need to keep 'this' alive through the callsite. It also enables optimizations in the backend, such as tail call optimization. rdar://12818789 llvm-svn: 177211
-
Richard Trieu authored
When the template argument is both default and value dependent, the expression retrieved for the default argument cannot be evaluated, thus never matching any argument value. To get the proper value, get the template argument from the desugared template specialization. Also, output the original expression to provide more information about the argument mismatch. llvm-svn: 177209
-
Anna Zaks authored
Fixes a FIXME, improves dead symbol collection, suppresses a false positive, which resulted from reusing the same symbol twice for simulation of 2 calls to the same function. Fixing this lead to 2 possible false negatives in CString checker. Since the checker is still alpha and the solution will not require revert of this commit, move the tests to a FIXME section. llvm-svn: 177206
-
Anna Zaks authored
llvm-svn: 177205
-
- Mar 15, 2013
-
-
Ted Kremenek authored
This is QoI. Fixes <rdar://problem/13076064>. llvm-svn: 177190
-
Jordan Rose authored
Silences a few false positives in LLVM. llvm-svn: 177186
-
Edwin Vane authored
Information messages sent to stdout by ClangTool now only happen when the -debug flag is set. Error messages that used to go to stdout now go to stderr. Author: Ariel J Bernal <ariel.j.bernal@intel.com> llvm-svn: 177177
-
Adrian Prantl authored
the balance between expected behavior and compatibility with the gdb testsuite. (GDB gets confused if we break an expression into multiple debug stmts so we enable this behavior only for inlined functions. For the full experience people can still use -gcolumn-info.) llvm-svn: 177164
-
Fariborz Jahanian authored
llvm-svn: 177163
-
Fariborz Jahanian authored
for integer overflow. // rdar://13423975 llvm-svn: 177162
-
Alexey Samsonov authored
llvm-svn: 177145
-
Anna Zaks authored
Allows the suppression visitors trigger more often. llvm-svn: 177137
-