1. a55e52c Use RAII objects to ensure proper destruction of expression and statement AST nodes in the parser in most cases, even on error. by Sebastian Redl · 16 years ago
  2. 0fe7bea Simple parsing of exception specifications, with no semantic analysis yet by Douglas Gregor · 16 years ago
  3. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  4. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  5. da83bac remove uses of IdentifierInfo::getName() by Chris Lattner · 16 years ago
  6. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  7. 1ab3b96 Change a couple of the Parser::Diag methods to return DiagnosticInfo by Chris Lattner · 16 years ago
  8. 10bd368 Eliminate all of the placeholder identifiers used for constructors, by Douglas Gregor · 16 years ago
  9. 43c7bad Some cleanups for C++ operator overloading by Douglas Gregor · 16 years ago
  10. 669d5d7 Implement parsing and semantic checking of the 'mutable' keyword. by Sebastian Redl · 16 years ago
  11. 7d7e672 Don't build identifiers for C++ constructors, destructors, or by Douglas Gregor · 16 years ago
  12. 1f6f54b Fix PR3031 by silencing follow-on errors in invalid declarations. by Chris Lattner · 16 years ago
  13. eb83ecd Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 16 years ago
  14. 59c940c Revert r58880, it breaks test/SemaCXX/constructor.cpp by Argyrios Kyrtzidis · 16 years ago
  15. 9916325 In a declarator, consider an identifier a constructor only if it is followed by '('. by Argyrios Kyrtzidis · 16 years ago
  16. c7ed9c6 Changes in preparation for nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  17. 2f1bc52 Parsing, ASTs, and semantic analysis for the declaration of conversion by Douglas Gregor · 16 years ago
  18. 12e083c Separate the parsing of type-specifiers from other declaration specifiers, so that we can parse a C++ type-specifier-seq by Douglas Gregor · 16 years ago
  19. 1cd1b1e Parsing, ASTs, and semantic analysis for the declaration of overloaded by Douglas Gregor · 16 years ago
  20. 42a552f Parsing, representation, and preliminary semantic analysis of destructors. by Douglas Gregor · 16 years ago
  21. f1f9b4e Implement C++ DR 106 and C++ DR 540, both of which deal with by Douglas Gregor · 16 years ago
  22. b48fe38 Add support for parsing and representing C++ constructor declarations. by Douglas Gregor · 16 years ago
  23. 27c8dc0 Implement initialization of a reference (C++ [dcl.init.ref]) as part by Douglas Gregor · 16 years ago
  24. 971c4fa -Add support for cv-qualifiers after function declarators. by Argyrios Kyrtzidis · 16 years ago
  25. c46d1a1 implement a couple fixme's by implementing __extension__ properly. by Chris Lattner · 16 years ago
  26. aab740a Support attributes in *yet another* place. Is there any place you by Chris Lattner · 16 years ago
  27. 7399ee0 Fix a parser bug where we let attributes interfere with our disambiguation by Chris Lattner · 16 years ago
  28. 7c186be Remove an implemented fixme, only treat < as a type specifier by Chris Lattner · 16 years ago
  29. e75d849 Just do a diagIfAmbiguous -> warnIfAmbiguous rename. No functionality change. by Argyrios Kyrtzidis · 16 years ago
  30. 259b0d9 Issue a warning when there's an ambiguous function declarator (that could be a direct initializer for a variable defition). by Argyrios Kyrtzidis · 16 years ago
  31. 3f2a8a0 In ParseParenDeclarator match "D.setGroupingParens(true);" with another setGroupingParens call after the ')' is parsed. by Argyrios Kyrtzidis · 16 years ago
  32. 73a0d88 Implement support for C++ direct initializers in declarations, e.g. "int x(1);". by Argyrios Kyrtzidis · 16 years ago
  33. e25d270 Allow variadic arguments without named ones for C++, e.g. "void(...);" by Argyrios Kyrtzidis · 16 years ago
  34. 78c8d80 Handle ambiguities between expressions and type-ids that occur inside parentheses, e.g.: by Argyrios Kyrtzidis · 16 years ago
  35. 5e592d8 Remove a FIXME. by Daniel Dunbar · 16 years ago
  36. 1bfe1c2 Pass postfix attributes to ActOnFields. by Daniel Dunbar · 16 years ago
  37. 4f9b9f1 Fix http://llvm.org/bugs/show_bug.cgi?id=2816. by Steve Naroff · 16 years ago
  38. e281b4c Fold Parser::ParseTag into Parser::ParseEnumSpecifier, as suggested in this post: by Argyrios Kyrtzidis · 16 years ago
  39. 0f07203 Support "typeof unary-expression" (GNU C++ extension). by Argyrios Kyrtzidis · 16 years ago
  40. 4ef1c99 Fix Parser::ParseDeclaratorInternal(): add langopts test when recognizing blocks. by Steve Naroff · 16 years ago
  41. 5618bd4 First wave of changes to support "blocks" (an extension to C). by Steve Naroff · 16 years ago
  42. 0919f9e Set the SourceRange ending of DeclSpec, when Parser::ParseTypeofSpecifier finishes. by Argyrios Kyrtzidis · 16 years ago
  43. e4858a6 More #include cleaning by Daniel Dunbar · 16 years ago
  44. 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
  45. 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 16 years ago
  46. a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 16 years ago
  47. 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 16 years ago
  48. e13b959 pull protocol resolution out into ActOnStartProtocolInterface. by Chris Lattner · 16 years ago
  49. eacc392 simplify some code. by Chris Lattner · 16 years ago
  50. f3948c4 < only starts a declspec in objc mode. by Chris Lattner · 16 years ago
  51. fc416a4 remove fixed fixme by Chris Lattner · 16 years ago
  52. ae4da61 make DeclSpec manage its own protocol qualifier list memory instead of having by Chris Lattner · 16 years ago
  53. 3bd934a Fix hte next wave of problems with protocol qualified ID: by Chris Lattner · 16 years ago
  54. bce6135 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
  55. 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 16 years ago
  56. 5a6ddbf add parser and sema support for the funny ObjC '@defs' thing. by Chris Lattner · 16 years ago
  57. d3ded1f Support "<p>" as a short-hand for "id<p>". Here's a comment from GCC (the only documentation I could find on it). by Steve Naroff · 16 years ago
  58. 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 16 years ago
  59. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 16 years ago
  60. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 16 years ago
  61. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 16 years ago
  62. 1d78cc4 Patch for: by Fariborz Jahanian · 16 years ago
  63. ebe457c reduce the amount of 'C++ magic' this code depends on :) by Chris Lattner · 16 years ago
  64. e135942 refactor Parser::ParseStructDeclaration to return a vector of uninterpreted by Chris Lattner · 16 years ago
  65. 60b1e3e Simplify lifetime of location object. by Chris Lattner · 16 years ago
  66. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  67. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  68. 3420766 move a semantic check out of the parser into sema. by Chris Lattner · 16 years ago
  69. f97409f now that identifier list parsing is split out, simplify handling of by Chris Lattner · 16 years ago
  70. 3825c2e reject 'int test(x, x) int x; {}' by Chris Lattner · 16 years ago
  71. aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 16 years ago
  72. 50c6477 simplify Parser::ParseFunctionDeclaratorIdentifierList by Chris Lattner · 16 years ago
  73. 66d2865 split parsing of identifier lists in function declarators out into by Chris Lattner · 16 years ago
  74. ef4715c split code for handling grouping parens in declarators from code that by Chris Lattner · 16 years ago
  75. a711dd0 another minor simplification by Chris Lattner · 16 years ago
  76. 5dcc6ce Use token lookahead to simplify some code that is rarely executed. by Chris Lattner · 16 years ago
  77. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 16 years ago
  78. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Parse/ParseDecl.cpp]
  79. 81c018d improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 16 years ago
  80. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  81. 7654914 Collect and build and process type attributes on pointers. For by Chris Lattner · 17 years ago
  82. 5f8aa69 by Steve Naroff · 17 years ago
  83. e7a3730 by Steve Naroff · 17 years ago
  84. 705b5b5 by Steve Naroff · 17 years ago
  85. 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago
  86. b746ce8 by Steve Naroff · 17 years ago
  87. 419154d by Steve Naroff · 17 years ago
  88. d62701b by Steve Naroff · 17 years ago
  89. e0e713b Fix PR1965: missing diagnostics for parameters that are missing by Chris Lattner · 17 years ago
  90. d6326c6 by Steve Naroff · 17 years ago
  91. bdd15f7 Added a comment, minor refactoring of foreach parsing code per Chris's suggestion. by Fariborz Jahanian · 17 years ago
  92. 335a2d4 Minor changes as suggested by Chris L. by Fariborz Jahanian · 17 years ago
  93. 3ba5a0f Patch to parse/build AST ObjC2's foreach statement. by Fariborz Jahanian · 17 years ago
  94. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  95. 8d54bf2 by Steve Naroff · 17 years ago
  96. e8b724d move function to a more logical location, add its grammar productions. by Chris Lattner · 17 years ago
  97. dcc2cbc simplify some code. by Chris Lattner · 17 years ago
  98. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  99. 9298d96 Handle "bool" in all places that touch _Bool. by Chris Lattner · 17 years ago
  100. 1b4e251 Give AST-walk passes a way to access DeclSpec attributes on functions and by Nate Begeman · 17 years ago