1. 45bc03f Minor changes per Chris L's review. by Fariborz Jahanian · 17 years ago
  2. 7f925cc Switch sema to maintaining its own scope chain information for variable by Chris Lattner · 17 years ago
  3. 1d78cc4 Patch for: by Fariborz Jahanian · 17 years ago
  4. def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
  5. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  6. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  7. 8bcfc5b remove the Decl::getCanonicalType() method. by Chris Lattner · 17 years ago
  8. f52ab25 Start switching clients over from CT.getCanonicalType() to Context.getCanonicalType(CT) for PR2189. by Chris Lattner · 17 years ago
  9. b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
  10. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
  11. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  12. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
  13. b327ce0 by Steve Naroff · 17 years ago
  14. e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
  15. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
  16. c822ff4 Fix a comment typo and add a couple suggestions from Chris. by Steve Naroff · 17 years ago
  17. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
  18. c5e2f34 Alloc redeclaration of typedefs within ExternCSystemHeaderDir's AND SystemHeaderDir's. by Steve Naroff · 17 years ago
  19. 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
  20. 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
  21. 657aefe Fix http://llvm.org/bugs/show_bug.cgi?id=2161. by Steve Naroff · 17 years ago
  22. f962808 hoist a bunch of casting. by Chris Lattner · 17 years ago
  23. 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 17 years ago
  24. 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 17 years ago
  25. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from Sema/SemaDecl.cpp]
  26. c63e660 move the ASTContext argument to be first in the argument list of by Chris Lattner · 17 years ago
  27. a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago
  28. 9e151e1 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 17 years ago
  29. 6c2b6eb start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 17 years ago
  30. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
  31. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
  32. 440b456 Add fastcall/stdcall attribute support by Nate Begeman · 17 years ago
  33. aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
  34. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  35. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  36. 7b937ae The operand to the visibility attribute is required to be a quoted string, not a bare identifier. by Chris Lattner · 17 years ago
  37. 3465fb3 Only allow a "noreturn" attribute to be affixed to a FunctionDecl. by Ted Kremenek · 17 years ago
  38. ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
  39. 7e669b2 Add support for attribute(deprecated), patch by Nuno Lopes! by Chris Lattner · 17 years ago
  40. f5c93c1 Added parsing of attributes for functions. by Ted Kremenek · 17 years ago
  41. aecb383 Added support for attribute "noreturn." by Ted Kremenek · 17 years ago
  42. a73349d Fix PR2092 by making sure the sign of the enum value follows the by Chris Lattner · 17 years ago
  43. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  44. c398f0b Handle __attribute__((annotate("string"))) by Nate Begeman · 17 years ago
  45. 7654914 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
  46. 74788ba Correctly handle address space qualifiers in declspecs. This by Chris Lattner · 17 years ago
  47. 2070d80 rename some methods. by Chris Lattner · 17 years ago
  48. 212839c Use getKind() in HandleDeclAttribute instead of decoding the string inline. by Chris Lattner · 17 years ago
  49. f46699c Alternate address spaces work: by Chris Lattner · 17 years ago
  50. b7894b5 Turn handling of parameter attributes back on, fixing the ObjC breakage by Nate Begeman · 17 years ago
  51. 0e4c627 Revert this temporarily, it's breaking objc :/ by Nate Begeman · 17 years ago
  52. 6d20d03 Handle parameter attributes by Nate Begeman · 17 years ago
  53. 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
  54. 042c4e7 Better handling of the aligned attribute. by Anders Carlsson · 17 years ago
  55. e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 17 years ago
  56. 425a609 Fix typo by Anders Carlsson · 17 years ago
  57. ad14806 Handle packed attribute correctly by Anders Carlsson · 17 years ago
  58. 3fe0293 Don't call non-existent method... sorry about the spam; the fix seemed by Eli Friedman · 17 years ago
  59. a1321b6 Get rid of unused variable warning. by Eli Friedman · 17 years ago
  60. c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 17 years ago
  61. 9db1397 Part of clearing up the whole VariableArrayType + incomplete arrays by Eli Friedman · 17 years ago
  62. f78915f Get rid of AttributeList in the AST and use the new Attr class instead by Anders Carlsson · 17 years ago
  63. f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
  64. fabbc34 by Steve Naroff · 17 years ago
  65. 406db93 by Steve Naroff · 17 years ago
  66. 54174e8 by Steve Naroff · 17 years ago
  67. b43eaa5 by Steve Naroff · 17 years ago
  68. a312ce2 Improve diagnostic for illegal array initialization. by Eli Friedman · 17 years ago
  69. dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
  70. 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
  71. 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
  72. d62701b by Steve Naroff · 17 years ago
  73. e1e7985 inform astconsumer about tagdecls as they are defined. by Chris Lattner · 17 years ago
  74. a91d381 simplify some code. by Chris Lattner · 17 years ago
  75. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 17 years ago
  76. 4c49a6c by Steve Naroff · 17 years ago
  77. 6c751c2 Add TODO marker so that it is easier to search. by Devang Patel · 17 years ago
  78. 4ca0867 Ignore __aligned__ with zero arguments in addition to __aligned__ with by Eli Friedman · 17 years ago
  79. b7b032e by Steve Naroff · 17 years ago
  80. 0493025 Use the canonical type when comparing array types so the comparison by Eli Friedman · 17 years ago
  81. 7dd0bd4 by Steve Naroff · 17 years ago
  82. 578edc6 by Steve Naroff · 17 years ago
  83. d6326c6 by Steve Naroff · 17 years ago
  84. a996033 by Steve Naroff · 17 years ago
  85. 0cbc215 Fix a bug recovering from broken code with a goto that Eli reported. by Chris Lattner · 17 years ago
  86. a49e1fa by Steve Naroff · 17 years ago
  87. ca10730 Sema::CheckInitializerTypes(). Start simpliying and cleaning up... by Steve Naroff · 17 years ago
  88. 9a75f8a by Steve Naroff · 17 years ago
  89. d3cd1e5 by Steve Naroff · 17 years ago
  90. 837618c by Steve Naroff · 17 years ago
  91. 21dd821 Fix build issue on cygwin, patch by Sam Bishop by Chris Lattner · 17 years ago
  92. adbbd0c by Steve Naroff · 17 years ago
  93. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  94. d0091aa by Steve Naroff · 17 years ago
  95. ffce4d5 by Steve Naroff · 17 years ago
  96. 4a74678 by Steve Naroff · 17 years ago
  97. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  98. 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
  99. bfe639e give better diagnostics for converting between function pointer and void*. by Chris Lattner · 17 years ago
  100. 529bd02 When promoting array to pointer for argument, don't lose type qualifiers. by Chris Lattner · 17 years ago