1. c46bb7d Start stubbing out a ClassVirtSpecifiers class. by Anders Carlsson · 14 years ago
  2. b971dbd Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. by Anders Carlsson · 14 years ago
  3. 7f040a9 Refactor how we collect attributes during parsing, and add slots for attributes by John McCall · 14 years ago
  4. 33e4e70 Refactoring of Diagnostic class. by Argyrios Kyrtzidis · 14 years ago
  5. dab60ad Implement the C++0x "trailing return type" feature, e.g., by Douglas Gregor · 14 years ago
  6. 9e46b8c Make sure we clear TypeSpecOwned when setting TypeSpecType to something when by John McCall · 14 years ago
  7. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  8. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  9. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago[Renamed (98%) from lib/Parse/DeclSpec.cpp]
  10. 35f9a19 Fixed typedef inside extern "C". by Abramo Bagnara · 14 years ago
  11. 2e964a92 Add parentheses suggested by gcc. by Duncan Sands · 14 years ago
  12. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 14 years ago
  13. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  14. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 14 years ago
  15. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 14 years ago
  16. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 14 years ago
  17. 8047f17 Revert the unused TST_pixel entry from r95335 as it is not listed in the Sema by Chandler Carruth · 15 years ago
  18. 82287d1 First stage of adding AltiVec support by John Thompson · 15 years ago
  19. ddf889a Improve source-location information for builtin TypeLocs, from Enea by Douglas Gregor · 15 years ago
  20. 0efc2c1 Reimplement constructor declarator parsing to cope with template-ids by Douglas Gregor · 15 years ago
  21. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  22. 314b97f Improve parsing of template arguments to lay the foundation for by Douglas Gregor · 15 years ago
  23. 2ac6723 Parse C++0x constexpr. Test case follows when this does something useful. by Sebastian Redl · 15 years ago
  24. 3f9a056 Introduce a new class, UnqualifiedId, that provides a parsed by Douglas Gregor · 15 years ago
  25. e3a535b Move DeclSpec::setProtocolQualifiers() out of line. by Argyrios Kyrtzidis · 15 years ago
  26. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  27. 82bf010 Keep track of the right paren ')' source location in a function declarator. by Argyrios Kyrtzidis · 15 years ago
  28. 67d1a67 First pass at friend semantics. by John McCall · 15 years ago
  29. fec5401 Refactor methods on DeclSpec to take a diagnostic& parameter, and reflect this by John McCall · 15 years ago
  30. 32d335e Templatize BadSpecifier and introduce DeclSpec::getSpecifier(T) for the by John McCall · 15 years ago
  31. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  32. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  33. 3cc9726 Disallow exception specs on typedefs. by Sebastian Redl · 15 years ago
  34. ef65f06 Reject incomplete types in exception specs. by Sebastian Redl · 15 years ago
  35. 402abb5 When we parse a tag specifier, keep track of whether that tag by Douglas Gregor · 15 years ago
  36. f47f7a1 Add parsing of friend specifiers. by Anders Carlsson · 15 years ago
  37. 7dc8134 Have the parser communicate the exception specification to the action. by Sebastian Redl · 15 years ago
  38. 63054b3 Add more thorough/correct checking for invalid __thread specifiers. by Eli Friedman · 15 years ago
  39. 9b3064b Add code modification hints to various parsing-related diagnostics. by Douglas Gregor · 15 years ago
  40. b28317a Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a by Chris Lattner · 15 years ago
  41. 3507369 Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here by Douglas Gregor · 15 years ago
  42. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 15 years ago
  43. 2a327d1 cleanup by Chris Lattner · 15 years ago
  44. 965acbb Allow "overloadable" functions in C to be declared as variadic without by Douglas Gregor · 16 years ago
  45. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 16 years ago
  46. ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
  47. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  48. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  49. 5af2f35 Optimize Declarator to avoid malloc/free traffic for the argument list of a by Chris Lattner · 16 years ago
  50. 4920f1f Implement support for anonymous structs and unions in C. Both C and by Douglas Gregor · 16 years ago
  51. a4ed0d8 Diagnose declarations that don't declare anything, and fix PR3020. by Sebastian Redl · 16 years ago
  52. 254be6a remove some more old Diag methods, replace with a single static helper function by Chris Lattner · 16 years ago
  53. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  54. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  55. 669d5d7 Implement parsing and semantic checking of the 'mutable' keyword. by Sebastian Redl · 16 years ago
  56. b48fe38 Add support for parsing and representing C++ constructor declarations. by Douglas Gregor · 16 years ago
  57. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  58. e4858a6 More #include cleaning by Daniel Dunbar · 16 years ago
  59. 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
  60. 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 16 years ago
  61. d420433 One more test checkin. by Mike Stump · 16 years ago
  62. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 16 years ago
  63. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Parse/DeclSpec.cpp]
  64. 96715ae by Steve Naroff · 17 years ago
  65. 9532414 by Steve Naroff · 17 years ago
  66. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  67. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  68. 2efcd2f improve VC++ compatibility, patch by Cédric Venet. by Chris Lattner · 17 years ago
  69. d1861fd by Steve Naroff · 17 years ago
  70. e80a59c Fix a couple of bugs, add some new cool stuff. by Chris Lattner · 17 years ago
  71. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago