- Feb 02, 2010
-
-
Chris Lattner authored
llvm-svn: 95110
-
Anders Carlsson authored
llvm-svn: 95108
-
John McCall authored
llvm-svn: 95106
-
John McCall authored
llvm-svn: 95104
-
Sebastian Redl authored
Check for redefinitions in MergeVarDecl. This finds redefinitions of globals without an initializer in C++ and thus fixes PR5451. llvm-svn: 95098
-
Fariborz Jahanian authored
Fixes radar 7589414. llvm-svn: 95097
-
Sebastian Redl authored
llvm-svn: 95096
-
Douglas Gregor authored
llvm-svn: 95095
-
Chris Lattner authored
type qualifiers and type specifiers in any order. For example, this is valid: struct x {...} typedef y; This fixes PR6208. llvm-svn: 95094
-
Daniel Dunbar authored
this is still a popular thing to do. llvm-svn: 95093
-
Chandler Carruth authored
unused variable warning. llvm-svn: 95085
-
John McCall authored
llvm-svn: 95079
-
John McCall authored
magnitude clearer. llvm-svn: 95078
-
John McCall authored
Eliminates a lot of spurious global initializers, fixing PR6205. llvm-svn: 95077
-
Anders Carlsson authored
llvm-svn: 95076
-
John McCall authored
UnresolvedMemberExpr and employ it in a few places where it's useful. llvm-svn: 95072
-
Daniel Dunbar authored
dyncast is just due to \r\n newline interaction w/ regexps. The remap-load.c failure is a bit stranger (the end of the extent is on the next line), but I don't care to investigate. llvm-svn: 95071
-
Chris Lattner authored
llvm-svn: 95069
-
Daniel Dunbar authored
syntax. llvm-svn: 95068
-
Daniel Dunbar authored
side effect, this also fixes some cases on Windows where the file would end up on a different drive, because tmpnam doesn't include the drive component. PR3837 strikes again. llvm-svn: 95067
-
Anders Carlsson authored
llvm-svn: 95066
-
Daniel Dunbar authored
external ASTs, and the ASTUnit fails to load. Also, move getLocationFromExpr outside extern "C" block. llvm-svn: 95065
-
Anders Carlsson authored
llvm-svn: 95063
-
Anders Carlsson authored
llvm-svn: 95061
-
Anders Carlsson authored
llvm-svn: 95060
-
John McCall authored
llvm-svn: 95059
-
John McCall authored
as an argument during overload resolution. llvm-svn: 95057
-
John McCall authored
arguments. Fix a bug where incomplete explicit specializations were being passed through as legitimate. Fix a bug where the absence of an explicit specialization in an overload set was causing overall deduction to fail. Fixes PR6191. llvm-svn: 95052
-
Ted Kremenek authored
This is to address a serious performance problem observed when running 'clang -fsyntax-only' on really broken source files. In one case, repeatedly calling CorrectTypo() caused one source file to be rejected after 2 minutes instead of 1 second. This patch causes typo correction to take neglible time on that file while still providing correction results for the first 20 cases. I felt this was a reasonable number for moderately broken source files. I don't claim this is the best solution. Comments welcome. It is necessary for us to address this issue because it is a serious performance problem. llvm-svn: 95049
-
Ted Kremenek authored
'Pred' to 'Dst' for cases we currently don't handle. This fixes <rdar://problem/7593875>. llvm-svn: 95048
-
Chris Lattner authored
llvm-svn: 95043
-
Chris Lattner authored
forgetting a ';' at the end of a struct. For something like: class c { } void foo() {} we now produce: t.cc:3:2: error: expected ';' after class } ^ ; instead of: t.cc:4:1: error: cannot combine with previous 'class' declaration specifier void foo() {} ^ t.cc:2:7: error: 'class c' can not be defined in the result type of a function class c { ^ GCC produces: t.cc:4: error: new types may not be defined in a return type t.cc:4: note: (perhaps a semicolon is missing after the definition of ‘c’) t.cc:4: error: two or more data types in declaration of ‘foo’ I *think* I got the follow set right, but if I forgot anything, we'll start getting spurious "expected ';' after class" errors, let me know if you see any. llvm-svn: 95042
-
Chris Lattner authored
t.cc:4:3: error: expected ';' at end of declaration list int y; ^ t.cc:6:1: error: expected ';' at end of declaration list }; ^ After: t.cc:3:8: error: expected ';' at end of declaration list int x ^ ; t.cc:5:8: error: expected ';' at end of declaration list int z ^ ; llvm-svn: 95039
-
Chris Lattner authored
t.c:4:3: error: expected ';' at end of declaration list int y; ^ t.c:4:8: warning: extra ';' inside a struct or union int y; ^ t.c:6:1: warning: expected ';' at end of declaration list }; ^ After: t.c:3:8: error: expected ';' at end of declaration list int x // expected-error {{expected ';' at end of declaration list}} ^ ; t.c:5:8: warning: expected ';' at end of declaration list int z ^ ; llvm-svn: 95038
-
Ted Kremenek authored
Hoist diagnostic generation in ReturnStackAddressChecker into a separate method. No functionality change. llvm-svn: 95037
-
Douglas Gregor authored
a test for access declarations and remove a (broken) test for removal of default arguments. llvm-svn: 95032
-
Douglas Gregor authored
- In C++, prior to the closing '}', set the type of enumerators based on the type of their initializer. Don't perform unary conversions on the enumerator values. - In C++, handle overflow when an enumerator has no initializer and its value cannot be represented in the type of the previous enumerator. - In C, handle overflow more gracefully, by complaining and then falling back to the C++ rules. - In C, if the enumerator value is representable in an int, convert the expression to the type 'int'. Fixes PR5854 and PR4515. llvm-svn: 95031
-
Daniel Dunbar authored
llvm-svn: 95030
-
Daniel Dunbar authored
llvm-svn: 95029
-
Ted Kremenek authored
llvm-svn: 95026
-