- Aug 09, 2008
-
-
Chris Lattner authored
an invalid struct decl. Thanks to Martin Doucha for the isIncompleteArrayType part of this patch. llvm-svn: 54592
-
Gordon Henriksen authored
(Fixing a spelling error.) llvm-svn: 54591
-
Nico Weber authored
llvm-svn: 54590
-
Chris Lattner authored
type lattice value for an Argument*, giving clients the opportunity to use something other than Top for it if they choose to." Patch by John McCall! llvm-svn: 54589
-
Argyrios Kyrtzidis authored
No functionality change. llvm-svn: 54588
-
Argyrios Kyrtzidis authored
llvm-svn: 54587
-
Argyrios Kyrtzidis authored
llvm-svn: 54585
-
Steve Naroff authored
Fix Sema::MergeVarDecl() to better handle type compatibility. The previous code was trying to handle arrays specially (which didn't work for pointers to array). Removed local helper function areEquivalentArrayTypes(), replacing it's use with the more general ASTContext::typesAreCompatible() predicate. Even though the test case this fixes is in "tentative-decls.c", this bug didn't have anything to do with our handling of tentative definitions (which is what I first expected). In any event, this is a tricky area of the spec. llvm-svn: 54583
-
Duncan Sands authored
IRBuilder are not expecting null names. llvm-svn: 54581
-
Cedric Venet authored
llvm-svn: 54580
-
Chris Lattner authored
LoadInst ctor, which causes std::string thrashing. llvm-svn: 54577
-
Chris Lattner authored
llvm-svn: 54576
-
Gordon Henriksen authored
llvm-svn: 54574
-
Gordon Henriksen authored
Please use !LLVMIsDeclaration instead. llvm-svn: 54572
-
Gordon Henriksen authored
llvm-svn: 54571
-
Gordon Henriksen authored
llvm-svn: 54570
-
Argyrios Kyrtzidis authored
at which point the C++ struct/class/union is fully parsed. llvm-svn: 54569
-
Ted Kremenek authored
llvm-svn: 54568
-
Argyrios Kyrtzidis authored
Passing right brace location to ActOnFinishCXXClassDef is redundant, since it gets passed to ActOnFinishCXXMemberSpecification too. llvm-svn: 54567
-
Ted Kremenek authored
llvm-svn: 54566
-
Ted Kremenek authored
llvm-svn: 54563
-
Ted Kremenek authored
llvm-svn: 54562
-
Argyrios Kyrtzidis authored
llvm-svn: 54561
-
- Aug 08, 2008
-
-
Gordon Henriksen authored
Evan broke it in r54523 by adding a parameter in the implementation without updating the header correspondingly. llvm-svn: 54555
-
Ted Kremenek authored
llvm-svn: 54552
-
Chris Lattner authored
llvm-svn: 54548
-
Eric Christopher authored
names. This can save a lot of allocations if you aren't going to be looking at the output. llvm-svn: 54546
-
Dan Gohman authored
llvm-svn: 54545
-
Dan Gohman authored
X86ISelLowering creates. llvm-svn: 54544
-
Anton Korobeynikov authored
llvm-svn: 54543
-
Anton Korobeynikov authored
llvm-svn: 54542
-
Anton Korobeynikov authored
llvm-svn: 54541
-
Anton Korobeynikov authored
llvm-svn: 54540
-
Anton Korobeynikov authored
llvm-svn: 54539
-
Anton Korobeynikov authored
llvm-svn: 54538
-
Anton Korobeynikov authored
llvm-svn: 54537
-
Anton Korobeynikov authored
llvm-svn: 54536
-
Owen Anderson authored
Reduce the entries in a phi before testing it for deadness, because removing the entries might make it dead. llvm-svn: 54535
-
Evan Cheng authored
llvm-svn: 54534
-
Steve Naroff authored
- Move checking from MergeVarDecl->FinializeDeclaratorGroup. Since MergeVarDecl is called before the initializer is attacted, it can't be done there (this removes a long standing FIXME). - Add Sema::isTentativeDefinition() and Sema::CheckForFileScopedRedefinitions(). - Remove FIXME's and touch-up test case. Still some more work to do (forthcoming)... llvm-svn: 54533
-