- May 10, 2008
-
-
Evan Cheng authored
If all sources of a PHI node are defined by an implicit_def, just emit an implicit_def instead of a copy. llvm-svn: 50927
-
Bill Wendling authored
- Comment fixes. - Moar whitespace. - Made ivars "private" by default. No functionality change. llvm-svn: 50926
-
Chris Lattner authored
macros but doesn't expand #includes, remove comments, remove #defines etc. For example: ---- #include <stdio.h> #define bbaa #define funclike(x) x "a" x "b" x bbaa bbaa #if 1 funclike("gar") foo /*blah*/ bar bar #endif #if 0 funclike() #endif ---- rewrites to: ---- #include <stdio.h> #define bbaa #define funclike(x) x "a" x "b" x /*bbaa bbaa*/ #if 1 "gar" "a" "gar" "b" "gar"/*funclike*//*("gar")*/ foo /*blah*/ bar bar #endif #if 0 /*funclike()*/ #endif ---- llvm-svn: 50925
-
Ted Kremenek authored
Rename IsPointerType to LVal::IsLValType, and update CFRefCount::EvalSummary to use IsLValType when conjuring symbols for return values (this fixes a bug with an assertion firing in the analyzer when two qualified objective-c types were compared). llvm-svn: 50924
-
Argyrios Kyrtzidis authored
-identifierResolver exposes an iterator interface to get all decls through the scope chain. -The semantic staff (checking IdentifierNamespace and Doug's checking for shadowed tags were moved out of IdentifierResolver and back into Sema. IdentifierResolver just gives an iterator for all reachable decls of an identifier. llvm-svn: 50923
-
Evan Cheng authored
llvm-svn: 50922
-
Dale Johannesen authored
no functional change. llvm-svn: 50921
-
Chris Lattner authored
llvm-svn: 50920
-
Mon P Wang authored
llvm-svn: 50919
-
- May 09, 2008
-
-
Evan Cheng authored
Note, some of the code will be moved into target independent part of DAG combiner in a subsequent patch. llvm-svn: 50918
-
Evan Cheng authored
llvm-svn: 50917
-
Dale Johannesen authored
case where there are multiple blocks with a large number of common tail instructions more efficiently (compile time optimization). llvm-svn: 50916
-
rdar://problem/5924225Steve Naroff authored
Fix <rdar://problem/5924225> clang ObjC rewriter: objc_exception_throw declaration in preamble does not match objc/objc-exception.h. llvm-svn: 50915
-
Steve Naroff authored
DO NOT pre-defined __OBJC2__. The __OBJC2__ macro should only be defined when targeting the new, Apple 2.0 *runtime ABI*. It is not intended to be used to #ifdef ObjC 2.0 langauge features. This is unfortunate (given it's name). In a perfect world, this defined would be named __OBJC2_RUNTIME_ABI__. Oh well. llvm-svn: 50913
-
Torok Edwin authored
clashes on ::X llvm-svn: 50912
-
Evan Cheng authored
llvm-svn: 50911
-
Mikhail Glushenkov authored
llvm-svn: 50910
-
Steve Naroff authored
llvm-svn: 50909
-
Nick Kledzik authored
llvm-svn: 50908
-
Ted Kremenek authored
llvm-svn: 50907
-
Ted Kremenek authored
llvm-svn: 50906
-
Ted Kremenek authored
llvm-svn: 50905
-
Ted Kremenek authored
llvm-svn: 50904
-
Nate Begeman authored
llvm-svn: 50903
-
Chris Lattner authored
crash on kimwitu++. llvm-svn: 50901
-
Duncan Sands authored
llvm-svn: 50900
-
Gabor Greif authored
llvm-svn: 50899
-
Gabor Greif authored
llvm-svn: 50898
-
Gabor Greif authored
llvm-svn: 50897
-
Mikhail Glushenkov authored
Fixed the build breakage, sorry for that. llvm-svn: 50895
-
Nate Begeman authored
vector of the same element type and half the width, with the high, low, even, and odd elements respectively. Allow member references to member references, so that .hi.hi gives you the high quarter of a vector. This is fairly convenient syntax for some insert/extract operations. Remove some unnecessary methods/types in the ExtVectorElementExpr class. llvm-svn: 50892
-
Chris Lattner authored
llvm-svn: 50891
-
Chris Lattner authored
llvm-svn: 50890
-
Chris Lattner authored
llvm-svn: 50888
-
Chris Lattner authored
llvm-svn: 50887
-
Chris Lattner authored
llvm-svn: 50886
-
-
Chris Lattner authored
crashes because objc types aren't set up right. llvm-svn: 50884
-
Chris Lattner authored
llvm-svn: 50883
-
Chris Lattner authored
~x < ~y --> y < x -x == -y --> x == y llvm-svn: 50882
-