1. 4a97b8e Remove Inheritable/NonInheritable flags from ProcessDeclAttributes. They don't by Richard Smith · 11 years ago
  2. 152b4e4 Revert "Implement a rudimentary form of generic lambdas." by Manuel Klimek · 11 years ago
  3. 28cc16a Revert "Remove some unused variables identified by Juergen Ributzka *I need to turn on this warning in Visual C++ - sorry!*" by Manuel Klimek · 11 years ago
  4. 21adb0c const'ify Sema::ActOnCXXTryBlock by by Robert Wilhelm · 11 years ago
  5. ebf5535 Remove some unused variables identified by Juergen Ributzka *I need to turn on this warning in Visual C++ - sorry!* by Faisal Vali · 11 years ago
  6. ecb5819 Implement a rudimentary form of generic lambdas. by Faisal Vali · 11 years ago
  7. e0f720e Remove Extension warning for GNU local labels. by Eli Friedman · 11 years ago
  8. c895f4d const'ify Sema::ActOnCompoundStmt by by Robert Wilhelm · 11 years ago
  9. 360d23e Parse: Do not 'HandleTopLevelDecl' on templated functions. by David Majnemer · 11 years ago
  10. 5a42820 Fix for dependent contexts in alias templates. by Eli Friedman · 11 years ago
  11. 4fce06c Fix Altivec vector literal parser hack for C++11. by Eli Friedman · 11 years ago
  12. 6010b4b Fix misindentation. by Richard Smith · 11 years ago
  13. 62f675c Avoid spurious error messages if parent template class cannot be instantiated by Serge Pavlov · 11 years ago
  14. ac32d90 PR9992: Serialize and deserialize the token sequence for a function template in by Richard Smith · 11 years ago
  15. 2521813 A bit of clean up based on peer's feedback... by Larisse Voufo · 11 years ago
  16. 9c90f7f Removed hack that was used to properly restore the nested name specifier of qualified variable template ids. It turns out that the current implementation was just not logical setup for it. This commit has made it so. by Larisse Voufo · 11 years ago
  17. 06935f3 Moved diagnosis of forward declarations of variable templates from Parser to Sema. by Larisse Voufo · 11 years ago
  18. ef4579c Started implementing variable templates. Top level declarations should be fully supported, up to some limitations documented as FIXMEs or TODO. Static data member templates work very partially. Static data member templates of class templates need particular attention... by Larisse Voufo · 11 years ago
  19. fcbe208 Parse: Don't consider attributes of broken member declarators by David Majnemer · 11 years ago
  20. d66bf94 Avoid recursions when the parser finds out that it has too many brackets. by Rafael Espindola · 11 years ago
  21. 8d030c7 Improve clarity/consistency of a few UsingDecl methods and related helpers. by Enea Zaffanella · 11 years ago
  22. 844a527 Silence GCC warning for using both enum and unsigned in a ternary expr. by Benjamin Kramer · 11 years ago
  23. 4fa7eab OpenMP: basic support for #pragma omp parallel by Alexey Bataev · 11 years ago
  24. a3c6246 This patch removes unused parameter allProperties and converts remaining by Fariborz Jahanian · 11 years ago
  25. dd02543 Change cxx0x to cxx11 in diagnostic name. by Craig Topper · 11 years ago
  26. 6e9d86b Provide a better diagnostic and a fixit for a '.' or '->' before the left paren by Kaelyn Uhrain · 11 years ago
  27. a38253c PR5066: If a declarator cannot have an identifier, and cannot possibly be by Richard Smith · 11 years ago
  28. 4549d7f ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and by Rafael Espindola · 11 years ago
  29. 163fbf8 Use SmallVectorImpl::reverse_iterator instead of SmallVector to avoid specifying the vector size. by Craig Topper · 11 years ago
  30. 2d77634 Fixed source location info for UnaryTransformTypeLoc nodes. by Enea Zaffanella · 11 years ago
  31. 6b9240e Use SmallVectorImpl& for function arguments instead of SmallVector. by Craig Topper · 11 years ago
  32. 09d19ef Use SmallVectorImpl instead of SmallVector for iterators and references to avoid specifying the vector size unnecessarily. by Craig Topper · 11 years ago
  33. 54ca069 PR16480: Reimplement token-caching for constructor initializer lists. This by Richard Smith · 11 years ago
  34. 3e3d20b "bool" should be a context-sensitive keyword in Altivec mode. by Bill Schmidt · 11 years ago
  35. 572cf58 ArrayRef'ize Sema::CodeCompleteConstructorInitializer by Dmitri Gribenko · 11 years ago
  36. 319957c Add null check (resolves PR16423) by Stephen Lin · 11 years ago
  37. 4985429 Instantiation bug fix extension (cf. r184503) -- minor code fixes, including a typo that caused a runtime assertion after firing diagnosis for class definitions, with the 'template' keyword as template header, in friend declarations. by Larisse Voufo · 11 years ago
  38. 7c64ef0 Bug Fix: Template explicit instantiations should not have definitions (FixIts yet to be tested.) by Larisse Voufo · 11 years ago
  39. 6e91f4b Fix for PR 16367, display the name of a function in a diagnostic instead of by Richard Trieu · 11 years ago
  40. 4b7bae3 Update to pass in pointers intead of references. by Bill Wendling · 11 years ago
  41. 9109bf1 C++11: don't warn about the deprecated 'register' keyword if it's combined with by Richard Smith · 11 years ago
  42. 050315b ArrayRef'ize Sema::CodeComplete* by Dmitri Gribenko · 11 years ago
  43. 6b759f4 Suppress the c++11 -Wdeprecated warning for 'register' if it is expanded from a by Richard Smith · 11 years ago
  44. 79f4bb7 Add -Wdeprecated warnings and fixits for things deprecated in C++11: by Richard Smith · 11 years ago
  45. 688f986 Fix the parser's updating of the template depth when parsing local templates and late-parsed templates. by Faisal Vali · 11 years ago
  46. 65efd10 Revert r183618. by Faisal Vali · 11 years ago
  47. 22bf46a Fix the parser's updating of the template depth when parsing local templates and late-parsed templates. This is a slight tweak of r180708; It avoids incrementing depth when non-template local classes nested within member templates of local classes are encountered. by Faisal Vali · 11 years ago
  48. 122e601 Recognition of empty structures and unions is moved to semantic stage by Serge Pavlov · 11 years ago
  49. 80e8ea9 address some comments on r183474: by Adrian Prantl · 11 years ago
  50. cafeb94 PR16243: Use CXXThisOverride during template instantiation, and fix up the by Richard Smith · 11 years ago
  51. a7ff62f Adding support for MSVC #pragma detect_mismatch functionality by emitting a FAILIFMISMATCH linker command into the object file. by Aaron Ballman · 11 years ago
  52. 3b7deda [modules] If we hit a failure while loading a PCH/module, abort parsing instead of trying to continue in an invalid state. by Argyrios Kyrtzidis · 11 years ago
  53. aa9df09 Adding in parsing and the start of semantic support for __sptr and __uptr pointer type qualifiers. This patch also fixes the correlated __ptr32 and __ptr64 pointer qualifiers so that they are truly type attributes instead of declaration attributes. by Aaron Ballman · 11 years ago
  54. 440d456 PR16094: I should have known Obj-C init-capture disambiguation couldn't be by Richard Smith · 11 years ago
  55. e4bb749 Objective-C parsing. Error recovery when category implementation by Fariborz Jahanian · 11 years ago
  56. 0d8e964 First pass of semantic analysis for init-captures: check the initializer, build by Richard Smith · 11 years ago
  57. 7247c88 Use only explicit bool conversion operator by David Blaikie · 11 years ago
  58. 6af701f OpenMP threadprivate with qualified names. by Alexey Bataev · 11 years ago
  59. 1fcf31e Update for LLVM interface change in r181680. by Rafael Espindola · 11 years ago
  60. a36bbac ArrayRef'ize Sema::ActOnMemInitializer by Dmitri Gribenko · 11 years ago
  61. 0a664b8 C++1y n3648: parse and reject init-captures for now. by Richard Smith · 11 years ago
  62. 3190ca9 Forward #pragma comment(lib/linker) through as flags metadata by Reid Kleckner · 11 years ago
  63. 7adf79a Move PragmaCommentHandler to lib/Parse in preparation for calling Sema by Reid Kleckner · 11 years ago
  64. 62ed889 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 11 years ago
  65. 5543169 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 11 years ago
  66. 3ce0de6 Properly parsing __declspec(safebuffers), though there is no semantic hookup. For more information about safebuffers, see MSDN: http://msdn.microsoft.com/en-us/library/dd778695(v=vs.110).aspx by Aaron Ballman · 11 years ago
  67. 14f78f4 Separate out and special-case the diagnostic for 'auto' in a by Richard Smith · 11 years ago
  68. 79bef7a <rdar://problem/13806270> A template argument list is a constant-evaluated context. by Douglas Gregor · 11 years ago
  69. 8c045ac Move CapturedStmt parameters to CapturedDecl by Ben Langmuir · 11 years ago
  70. aeeacf7 Move parsing of identifiers in MS-style inline assembly into by John McCall · 11 years ago
  71. 92eb7d8 Use attribute argument information to determine when to parse attribute arguments as expressions. by Douglas Gregor · 11 years ago
  72. fa5f030 Revert r180970; it's causing breakage. by Douglas Gregor · 11 years ago
  73. 3796d15 Use attribute argument information to determine when to parse attribute arguments as expressions. by Douglas Gregor · 11 years ago
  74. 58eb370 Fix PR15845: apparently MSVC does not support implicit int in C++ mode. by Richard Smith · 11 years ago
  75. dc7a4f5 Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there by Richard Smith · 11 years ago
  76. df1fdfd Fix a typo in a parse assert. Patch by Alex Denisov. by Fariborz Jahanian · 11 years ago
  77. 3a2f912 Small CapturedStmt improvements by Ben Langmuir · 11 years ago
  78. 098b814 Keep the parser's template depth up to date when parsing local templates and by Richard Smith · 11 years ago
  79. fed844d Properly reenter multiple contexts when parsing a late-parsed function template by Richard Smith · 11 years ago
  80. 9ff2b42 ArrayRef'ize Sema::ActOnEnumBody. No functionality change. by Dmitri Gribenko · 11 years ago
  81. a2c3646 Implement C++1y decltype(auto). by Richard Smith · 11 years ago
  82. 51c30af Objective-C parsing [qoi]: Recover gracefully with good diagnostic by Fariborz Jahanian · 11 years ago
  83. ed5a292 Warn that scoped enumerations are a C++11 extenstion when compiling in by Richard Trieu · 11 years ago
  84. 8404626 The 'constexpr implies const' rule for non-static member functions is gone in by Richard Smith · 11 years ago
  85. 0c7102f Objective-C++: Enable passing of modern C++11 style by Fariborz Jahanian · 11 years ago
  86. 0ac0ee9 Objective-C parsing [qoi]: Provide good recovery when by Fariborz Jahanian · 11 years ago
  87. bd95745 [Parser] Handle #pragma pack/align inside C structs. by Argyrios Kyrtzidis · 11 years ago
  88. 6afcf88 Sema for Captured Statements by Tareq A. Siraj · 11 years ago
  89. 85192c7 Parser support for #pragma clang __debug captured by Tareq A. Siraj · 11 years ago
  90. b004a8e Fix PR4296: Add parser detection/error recovery for nested functions, from Serve Pavlov! by Douglas Gregor · 11 years ago
  91. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 11 years ago
  92. ec64244 Parsing support for thread_local and _Thread_local. We give them the same by Richard Smith · 11 years ago
  93. 12849d0 <rdar://problem/13540921> Fix a crasher when an Objective-C for-in loop gets a non-variable iteration declaration. by Douglas Gregor · 12 years ago
  94. e145bfd Make the ObjC attributes diagnostics a bit more informative. by Nico Weber · 12 years ago
  95. 9f4f5f1 Emit a nicer diagnostic for misplaced attributes on ObjC directives. by Nico Weber · 12 years ago
  96. 20a7cf4 Give the default CorrectionCandidateCallback::ValidateCandidate some by Kaelyn Uhrain · 12 years ago
  97. 74b9fa1 Enable use of _Static_assert inside structs and unions in C11 mode (as per C11 6.7.2.1p1). by Andy Gibbs · 12 years ago
  98. f50f3f7 Assert that Parser::ParseStructUnionBody is not called for C++ code. by Andy Gibbs · 12 years ago
  99. 7b47adc Objective-C arc [qui]. Don't issue the bridge cast by Fariborz Jahanian · 12 years ago
  100. 725fe0e PR15633: Note that we are EnteringContext when parsing the nested name by Richard Smith · 12 years ago