- Feb 20, 2009
-
-
Chris Lattner authored
but don't start using it yet. Renamed some methods to be more consistent. llvm-svn: 65168
-
Chris Lattner authored
llvm-svn: 65166
-
Ted Kremenek authored
vanilla reverse-BFS followed by a forward-DFS instead of resulting to strange histrionics (whose purpose I can no longer remember) in the reverse-BFS stage. This fixes an assertion failure in BugReporter due to edge cases where no root was being hit in the reverse-BFS phase. llvm-svn: 65160
-
Chris Lattner authored
before the dtor. llvm-svn: 65156
-
Chris Lattner authored
and other non-semantic changes. llvm-svn: 65155
-
Chris Lattner authored
llvm-svn: 65151
-
Chris Lattner authored
it from being leaked, among other things. llvm-svn: 65150
-
Daniel Dunbar authored
llvm-svn: 65146
-
Daniel Dunbar authored
llvm-svn: 65145
-
Daniel Dunbar authored
clear insertion point. The rest of IRgen should theoretically take advantage of this to avoid emitting dead code. Theory != Practice. llvm-svn: 65141
-
Anders Carlsson authored
Always try to fold array sizes, and warn if we could fold something that isn't an ICE. This makes us compatible with GCC. llvm-svn: 65140
-
Chris Lattner authored
interfaces more consistently. llvm-svn: 65138
-
Daniel Dunbar authored
- PR3463 (again). llvm-svn: 65133
-
Chris Lattner authored
llvm-svn: 65132
-
Chris Lattner authored
llvm-svn: 65131
-
Daniel Dunbar authored
- Remove an unused variant of EmitCallExpr overload. llvm-svn: 65130
-
Chris Lattner authored
llvm-svn: 65129
-
-
Chris Lattner authored
llvm-svn: 65127
-
Chris Lattner authored
llvm-svn: 65124
-
Chris Lattner authored
llvm-svn: 65114
-
Chris Lattner authored
llvm-svn: 65113
-
Chris Lattner authored
llvm-svn: 65112
-
Chris Lattner authored
llvm-svn: 65111
-
Zhongxing Xu authored
llvm-svn: 65110
-
Eli Friedman authored
isn't getting used by Sema or CodeGen at the moment...) llvm-svn: 65107
-
Eli Friedman authored
llvm-svn: 65105
-
Chris Lattner authored
exactly one decl with a specific name in a specific context. This avoids a bunch of malloc traffic and shrinks StoredDeclsMap to hold one pointer instead of 3 words (for a std::vector). This speeds up -fsyntax-only on cocoa.h with PTH by ~7.3%. llvm-svn: 65103
-
Eli Friedman authored
This prevents emitting diagnostics which are almost certainly useless. (Note that the test is checking that we emit only one diagnostic.) llvm-svn: 65101
-
Eli Friedman authored
error, so we don't crash. llvm-svn: 65099
-
Eli Friedman authored
from the testsuite. llvm-svn: 65098
-
Fariborz Jahanian authored
llvm-svn: 65097
-
Chris Lattner authored
where there is exactly one existing declaration. This is common. this speeds up clang about 3% on cocoa.h for me 0.165 -> 0.160s llvm-svn: 65096
-
Chris Lattner authored
llvm-svn: 65095
-
Chris Lattner authored
llvm-svn: 65094
-
Mike Stump authored
llvm-svn: 65093
-
Chris Lattner authored
t.m:5:2: error: invalid operands to binary expression ('typeof(P)' (aka 'struct mystruct') and 'typeof(F)' (aka 'float')) MAX(P, F); ^~~~~~~~~ t.m:1:78: note: instantiated from: #define MAX(A,B) ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; }) ^ (no ranges on the second diagnostics) After: t.m:5:2: error: invalid operands to binary expression ('typeof(P)' (aka 'struct mystruct') and 'typeof(F)' (aka 'float')) MAX(P, F); ^~~~~~~~~ t.m:1:78: note: instantiated from: #define MAX(A,B) ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; }) ~~~ ^ ~~~ (ranges!) llvm-svn: 65090
-
Mike Stump authored
llvm-svn: 65089
-
Chris Lattner authored
DiagnosticInfo. llvm-svn: 65088
-
rdar://problem/6562655Ted Kremenek authored
Fix crash from <rdar://problem/6562655>: 'init' method only return a receiver alias if the return type is a location. llvm-svn: 65084
-