1. d66bf94 Avoid recursions when the parser finds out that it has too many brackets. by Rafael Espindola · 11 years ago
  2. 8d030c7 Improve clarity/consistency of a few UsingDecl methods and related helpers. by Enea Zaffanella · 11 years ago
  3. 844a527 Silence GCC warning for using both enum and unsigned in a ternary expr. by Benjamin Kramer · 11 years ago
  4. 4fa7eab OpenMP: basic support for #pragma omp parallel by Alexey Bataev · 11 years ago
  5. a3c6246 This patch removes unused parameter allProperties and converts remaining by Fariborz Jahanian · 11 years ago
  6. dd02543 Change cxx0x to cxx11 in diagnostic name. by Craig Topper · 11 years ago
  7. 6e9d86b Provide a better diagnostic and a fixit for a '.' or '->' before the left paren by Kaelyn Uhrain · 11 years ago
  8. a38253c PR5066: If a declarator cannot have an identifier, and cannot possibly be by Richard Smith · 11 years ago
  9. 4549d7f ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and by Rafael Espindola · 11 years ago
  10. 163fbf8 Use SmallVectorImpl::reverse_iterator instead of SmallVector to avoid specifying the vector size. by Craig Topper · 11 years ago
  11. 2d77634 Fixed source location info for UnaryTransformTypeLoc nodes. by Enea Zaffanella · 11 years ago
  12. 6b9240e Use SmallVectorImpl& for function arguments instead of SmallVector. by Craig Topper · 11 years ago
  13. 09d19ef Use SmallVectorImpl instead of SmallVector for iterators and references to avoid specifying the vector size unnecessarily. by Craig Topper · 11 years ago
  14. 54ca069 PR16480: Reimplement token-caching for constructor initializer lists. This by Richard Smith · 11 years ago
  15. 3e3d20b "bool" should be a context-sensitive keyword in Altivec mode. by Bill Schmidt · 11 years ago
  16. 572cf58 ArrayRef'ize Sema::CodeCompleteConstructorInitializer by Dmitri Gribenko · 11 years ago
  17. 319957c Add null check (resolves PR16423) by Stephen Lin · 11 years ago
  18. 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
  19. 7c64ef0 Bug Fix: Template explicit instantiations should not have definitions (FixIts yet to be tested.) by Larisse Voufo · 11 years ago
  20. 6e91f4b Fix for PR 16367, display the name of a function in a diagnostic instead of by Richard Trieu · 11 years ago
  21. 4b7bae3 Update to pass in pointers intead of references. by Bill Wendling · 11 years ago
  22. 9109bf1 C++11: don't warn about the deprecated 'register' keyword if it's combined with by Richard Smith · 11 years ago
  23. 050315b ArrayRef'ize Sema::CodeComplete* by Dmitri Gribenko · 11 years ago
  24. 6b759f4 Suppress the c++11 -Wdeprecated warning for 'register' if it is expanded from a by Richard Smith · 11 years ago
  25. 3a936ca Update clang for merge to r183849. by Stephen Hines · 11 years ago
  26. 79f4bb7 Add -Wdeprecated warnings and fixits for things deprecated in C++11: by Richard Smith · 11 years ago
  27. 2049840 Merge commit '1342a4ef62dd7b839c6f09348b246a4f00282f29' into merge_20130612 by Stephen Hines · 11 years ago
  28. 688f986 Fix the parser's updating of the template depth when parsing local templates and late-parsed templates. by Faisal Vali · 11 years ago
  29. 65efd10 Revert r183618. by Faisal Vali · 11 years ago
  30. 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
  31. 122e601 Recognition of empty structures and unions is moved to semantic stage by Serge Pavlov · 11 years ago
  32. 80e8ea9 address some comments on r183474: by Adrian Prantl · 11 years ago
  33. cafeb94 PR16243: Use CXXThisOverride during template instantiation, and fix up the by Richard Smith · 11 years ago
  34. 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
  35. 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
  36. 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
  37. 440d456 PR16094: I should have known Obj-C init-capture disambiguation couldn't be by Richard Smith · 11 years ago
  38. e4bb749 Objective-C parsing. Error recovery when category implementation by Fariborz Jahanian · 11 years ago
  39. 0d8e964 First pass of semantic analysis for init-captures: check the initializer, build by Richard Smith · 11 years ago
  40. 7247c88 Use only explicit bool conversion operator by David Blaikie · 11 years ago
  41. 6af701f OpenMP threadprivate with qualified names. by Alexey Bataev · 11 years ago
  42. 1fcf31e Update for LLVM interface change in r181680. by Rafael Espindola · 11 years ago
  43. a36bbac ArrayRef'ize Sema::ActOnMemInitializer by Dmitri Gribenko · 11 years ago
  44. 0a664b8 C++1y n3648: parse and reject init-captures for now. by Richard Smith · 11 years ago
  45. 3190ca9 Forward #pragma comment(lib/linker) through as flags metadata by Reid Kleckner · 11 years ago
  46. b491e68 Update Clang for merge to r180944. by Stephen Hines · 11 years ago
  47. 7adf79a Move PragmaCommentHandler to lib/Parse in preparation for calling Sema by Reid Kleckner · 11 years ago
  48. 62ed889 Replace 'MultiExprArg()' with 'None' by Dmitri Gribenko · 11 years ago
  49. 5543169 Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constructor from None by Dmitri Gribenko · 11 years ago
  50. 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
  51. 14f78f4 Separate out and special-case the diagnostic for 'auto' in a by Richard Smith · 11 years ago
  52. 79bef7a <rdar://problem/13806270> A template argument list is a constant-evaluated context. by Douglas Gregor · 11 years ago
  53. 83eba02c Merge remote-tracking branch 'upstream/master' into merge-20130502 by Stephen Hines · 11 years ago
  54. 8c045ac Move CapturedStmt parameters to CapturedDecl by Ben Langmuir · 11 years ago
  55. aeeacf7 Move parsing of identifiers in MS-style inline assembly into by John McCall · 11 years ago
  56. 92eb7d8 Use attribute argument information to determine when to parse attribute arguments as expressions. by Douglas Gregor · 11 years ago
  57. fa5f030 Revert r180970; it's causing breakage. by Douglas Gregor · 11 years ago
  58. 3796d15 Use attribute argument information to determine when to parse attribute arguments as expressions. by Douglas Gregor · 11 years ago
  59. 58eb370 Fix PR15845: apparently MSVC does not support implicit int in C++ mode. by Richard Smith · 11 years ago
  60. dc7a4f5 Don't treat a non-deduced 'auto' type as being type-dependent. Instead, there by Richard Smith · 11 years ago
  61. df1fdfd Fix a typo in a parse assert. Patch by Alex Denisov. by Fariborz Jahanian · 11 years ago
  62. 3a2f912 Small CapturedStmt improvements by Ben Langmuir · 11 years ago
  63. 098b814 Keep the parser's template depth up to date when parsing local templates and by Richard Smith · 11 years ago
  64. fed844d Properly reenter multiple contexts when parsing a late-parsed function template by Richard Smith · 11 years ago
  65. 9ff2b42 ArrayRef'ize Sema::ActOnEnumBody. No functionality change. by Dmitri Gribenko · 11 years ago
  66. a2c3646 Implement C++1y decltype(auto). by Richard Smith · 11 years ago
  67. 51c30af Objective-C parsing [qoi]: Recover gracefully with good diagnostic by Fariborz Jahanian · 11 years ago
  68. ed5a292 Warn that scoped enumerations are a C++11 extenstion when compiling in by Richard Trieu · 11 years ago
  69. 8404626 The 'constexpr implies const' rule for non-static member functions is gone in by Richard Smith · 11 years ago
  70. 0c7102f Objective-C++: Enable passing of modern C++11 style by Fariborz Jahanian · 11 years ago
  71. 0ac0ee9 Objective-C parsing [qoi]: Provide good recovery when by Fariborz Jahanian · 11 years ago
  72. bd95745 [Parser] Handle #pragma pack/align inside C structs. by Argyrios Kyrtzidis · 11 years ago
  73. 6afcf88 Sema for Captured Statements by Tareq A. Siraj · 11 years ago
  74. 85192c7 Parser support for #pragma clang __debug captured by Tareq A. Siraj · 11 years ago
  75. b004a8e Fix PR4296: Add parser detection/error recovery for nested functions, from Serve Pavlov! by Douglas Gregor · 11 years ago
  76. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 11 years ago
  77. ec64244 Parsing support for thread_local and _Thread_local. We give them the same by Richard Smith · 11 years ago
  78. 12849d0 <rdar://problem/13540921> Fix a crasher when an Objective-C for-in loop gets a non-variable iteration declaration. by Douglas Gregor · 11 years ago
  79. e145bfd Make the ObjC attributes diagnostics a bit more informative. by Nico Weber · 11 years ago
  80. 9f4f5f1 Emit a nicer diagnostic for misplaced attributes on ObjC directives. by Nico Weber · 11 years ago
  81. 20a7cf4 Give the default CorrectionCandidateCallback::ValidateCandidate some by Kaelyn Uhrain · 11 years ago
  82. 74b9fa1 Enable use of _Static_assert inside structs and unions in C11 mode (as per C11 6.7.2.1p1). by Andy Gibbs · 11 years ago
  83. f50f3f7 Assert that Parser::ParseStructUnionBody is not called for C++ code. by Andy Gibbs · 11 years ago
  84. 7b47adc Objective-C arc [qui]. Don't issue the bridge cast by Fariborz Jahanian · 11 years ago
  85. 725fe0e PR15633: Note that we are EnteringContext when parsing the nested name by Richard Smith · 11 years ago
  86. 4cf4a5e Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar for the _Atomic type specifier. by Richard Smith · 12 years ago
  87. ab2d09b [Parser] Don't code-complete twice. by Argyrios Kyrtzidis · 12 years ago
  88. 9ef9875 Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_traits>. by Joao Matos · 12 years ago
  89. 2db075b Implement special-case name lookup for inheriting constructors: member by Richard Smith · 12 years ago
  90. cdd81e5 Try harder to be signal-safe inside our signal handler. The most prominent behavioural by Nick Lewycky · 12 years ago
  91. c640058 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 12 years ago
  92. b760f11 Fix a crash-on-valid where a block capture copy expression was by John McCall · 12 years ago
  93. 695031c Do the error recovery for @end only. by Fariborz Jahanian · 12 years ago
  94. 4cc0cf1 Objective-C [qoi] more gracefull recovery when by Fariborz Jahanian · 12 years ago
  95. 576f32c Teach statement / declaration disambiguation about C++11-style generalized initializers. by Richard Smith · 12 years ago
  96. 5bba867 Objective-C [qoi]: Provide improved parse diagnostics when by Fariborz Jahanian · 12 years ago
  97. 15d6888 Merge branch 'upstream' into merge_2013_03_18 by Stephen Hines · 12 years ago
  98. c7f8116 Add missing diagnostic for a nested-name-specifier on a free-standing type definition. Bump some related diagnostics from warning to extension in C++, since they're errors there. Add some missing checks for function specifiers on non-function declarations. by Richard Smith · 12 years ago
  99. d922779 PR15290: 'this' is not permitted in the declaration of a friend function, by Richard Smith · 12 years ago
  100. e34db6b Flag that friend function definitions are "late parsed" so that by John McCall · 12 years ago