- Apr 06, 2008
-
-
Chris Lattner authored
llvm-svn: 49273
-
Chris Lattner authored
normal typed argument lists. llvm-svn: 49272
-
Chris Lattner authored
llvm-svn: 49271
-
Chris Lattner authored
llvm-svn: 49270
-
Chris Lattner authored
llvm-svn: 49269
-
Chris Lattner authored
their own method. llvm-svn: 49268
-
Chris Lattner authored
llvm-svn: 49267
-
Chris Lattner authored
llvm-svn: 49266
-
Chris Lattner authored
handles function argument parens in declarators. llvm-svn: 49265
-
Chris Lattner authored
llvm-svn: 49264
-
Chris Lattner authored
Since it is rare, the cost is not significant and we enjoy the simplification. llvm-svn: 49263
-
Chris Lattner authored
llvm-svn: 49262
-
Chris Lattner authored
-Renamed ContextDecl -> DeclContext -Removed DeclContext pointer from FieldDecl -EnumDecl inherits from DeclContext, instead of TagDecl Patch by Argiris Kirtzidis! llvm-svn: 49261
-
Chris Lattner authored
llvm-svn: 49260
-
Chris Lattner authored
Patch by Cédric Venet! llvm-svn: 49259
-
Chris Lattner authored
llvm-svn: 49258
-
Chris Lattner authored
llvm-svn: 49257
-
Chris Lattner authored
llvm-svn: 49256
-
- Apr 05, 2008
-
-
Chris Lattner authored
subsuming) my patch for PR1999. llvm-svn: 49251
-
Chris Lattner authored
missing from function definitions only. If we see a function definiton with missing declspecs, just fudge in an int. llvm-svn: 49250
-
Steve Naroff authored
llvm-svn: 49241
-
Steve Naroff authored
llvm-svn: 49238
-
Steve Naroff authored
llvm-svn: 49237
-
- Apr 04, 2008
-
-
Steve Naroff authored
llvm-svn: 49233
-
Steve Naroff authored
llvm-svn: 49229
-
Chris Lattner authored
code, but the codegen doesn't crash. I'll file a bugzilla for the AST being wrong. llvm-svn: 49226
-
Steve Naroff authored
#1: To be consistent with FieldDecl::getContextDecl(), which serves the same purpose. #2: From my perspective, getContext() is too general (and used by several other classes for different purposes). llvm-svn: 49224
-
Steve Naroff authored
llvm-svn: 49223
-
Chris Lattner authored
generator needs to call isAnyComplexType(). This fixes PR1960. llvm-svn: 49220
-
Chris Lattner authored
integer and FP complexes. llvm-svn: 49219
-
Chris Lattner authored
llvm-svn: 49217
-
Chris Lattner authored
llvm-svn: 49216
-
Chris Lattner authored
llvm-svn: 49215
-
Steve Naroff authored
Without this, the diagnostic is very confusing. The diag is now consistent with gcc as well. llvm-svn: 49214
-
Seo Sanghyeon authored
- ccc: quote shell metacharacters in command line to ease copy-and-paste llvm-svn: 49213
-
Seo Sanghyeon authored
llvm-svn: 49212
-
Torok Edwin authored
llvm-svn: 49209
-
Chris Lattner authored
-Added ContextDecl (no TranslationUnitDecl) -ScopedDecl class has a ContextDecl member -FieldDecl class has a ContextDecl member, so that a Field or a ObjCIvar can be traced back to their RecordDecl/ObjCInterfaceDecl easily -FunctionDecl, ObjCMethodDecl, TagDecl, ObjCInterfaceDecl inherit from ContextDecl. With TagDecl as ContextDecl, enum constants have a EnumDecl as their context. -Moved Decl class to a "DeclBase.h" along with ContextDecl class -CurContext is handled by Sema llvm-svn: 49208
-
Chris Lattner authored
llvm-svn: 49201
-
Nate Begeman authored
This prevents things like a += b[0]; where a is a float4 and b is a float4 * (address_space 1) llvm-svn: 49199
-