- 4e28d9e Remove ASTOwningVector, it doesn't own anything and provides no value over SmallVector. by Benjamin Kramer · 12 years ago
- 3fe198b Rip out remnants of move semantic emulation and smart pointers in Sema. by Benjamin Kramer · 12 years ago
- 40b2e19 When disambiguating an expression-statement from a declaraton-statement, if the by Richard Smith · 12 years ago
- 70517ca Fix a bunch of -Wdocumentation warnings. by Dmitri Gribenko · 12 years ago
- 377da4c Use LLVM_BUILTIN_TRAP instead of lame volatile int traps. by David Blaikie · 12 years ago
- e1715b6 Better diagnostics for range-based for loops with bad range types. by Sam Panzer · 12 years ago
- d30fb9e Thread-safety analysis: fix scoping issues related to 'this', including an by DeLesley Hutchins · 12 years ago
- 78fe3e0 PR13619: Make sure we're not at EOF before looking at NextToken(). by Richard Smith · 12 years ago
- 0576681 PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and by Richard Smith · 12 years ago
- 0d5a069 Add support for "type safety" attributes that allow checking that 'void *' by Dmitri Gribenko · 12 years ago
- bc20bbb Removed unused LParenLoc parameter to ActOnCXXForRangeStmt by Sam Panzer · 12 years ago
- 95526a4 Thread safety analysis: prevent a compiler error in cases where a by DeLesley Hutchins · 12 years ago
- f37e421 [ms-inline asm] MSVC parses multiple __asm statements on a single line as one by Chad Rosier · 12 years ago
- 7bd092b [ms-inline asm] Add the left brace source location and improve the pretty by Chad Rosier · 12 years ago
- 92570bd [ms-inline asm] Remove the last bits of LineEnds. by Chad Rosier · 12 years ago
- 21ef711 [ms-inline asm] Add a helpful assert. by Chad Rosier · 12 years ago
- e6b3fea Removed an unused function I added a while back. by Fariborz Jahanian · 12 years ago
- 9e5df31 objective-C++: dalyed parsing of ctors with member by Fariborz Jahanian · 12 years ago
- dbd6945 objective-C++: delay parsing of ctor with try block by Fariborz Jahanian · 12 years ago
- 2eb362b objective-C++: delayed parsing of member function with by Fariborz Jahanian · 12 years ago
- be1d4ec objective-C++: Delayed parsing of most common by Fariborz Jahanian · 12 years ago
- 6940972 objective-C: refactoring of objc's delayed parsing. by Fariborz Jahanian · 12 years ago
- 950435c In 'delete []', the '[]' never starts a lambda. Update a FIXME with a standard reference and add a test. by Richard Smith · 12 years ago
- c9b9709 objective-C: minor refactoring in method definition parsing logic. by Fariborz Jahanian · 12 years ago
- dcdff46 Minor simplification for r161534. by Eli Friedman · 12 years ago
- 8c6cb46 objective-C: refactor/simplify parsing of delayed by Fariborz Jahanian · 12 years ago
- 817a886 Fix r161534 so it actually builds. by Eli Friedman · 12 years ago
- de01b7a PR13558: Fix typo 'compatiblity'. Thinking of the children. Apparently. by Richard Smith · 12 years ago
- f66a0dd Handle deprecation diagnostics correctly for C struct fields and Objective-C properties/ivars. <rdar://problem/6642337>. by Eli Friedman · 12 years ago
- 62f22b8 [ms-inline asm] Refactor the logic to generate the AsmString into Sema. No by Chad Rosier · 12 years ago
- 79efe24 [ms-inline asm] Stmt destructors are never called, so allocate the AsmToks using by Chad Rosier · 12 years ago
- 8f726de [ms-inline asm] Pass Tokens to Sema and store them in the AST. No functional by Chad Rosier · 12 years ago
- d48ab06 Tweak code-completion heuristics deciding between a lambda by Douglas Gregor · 12 years ago
- 437fbc5 When we encounter a code-completion token while parsing an ill-formed by Douglas Gregor · 12 years ago
- b9c6261 Improvements to vexing-parse warnings. Make the no-parameters case more by Richard Smith · 12 years ago
- ec98f2f Fix an assertion failure when code completing an auto variable's initialiser. by Peter Collingbourne · 12 years ago
- 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
- 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
- d30ec70 objective-c parsing. Don't crash when selector name by Fariborz Jahanian · 12 years ago
- 42926a0 Pedantic -pedantic correction. Duplicate cv-qualifiers are permitted in C++11 by Richard Smith · 12 years ago
- 5969a5f Do not warn about a function decl / direct init ambiguity if the function has a trailing return type. by Richard Smith · 12 years ago
- bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
- eab9d6f Add diagnostics for comma at end of enum and for extra semicolon at namespace by Richard Smith · 12 years ago
- b67e7fc Allow the parser to recover gracefully if a typename is used to introduce a decltype type. by Francois Pichet · 12 years ago
- 090d1bd Fixes an ObjC++ parse crash caused by delayed parsing by Fariborz Jahanian · 12 years ago
- 69b5e95 Move helper class into an anonymous namespace. by Benjamin Kramer · 12 years ago
- b660446 80-column violations and whitespace. by Chad Rosier · 12 years ago
- 6749ae1 objective-c: provide fixit hint for @autoreleasepool by Fariborz Jahanian · 12 years ago
- 94f29f4 Better parser recovery in Objective-C containers. by Jordan Rose · 12 years ago
- 8a10d9f Added a new memberfor Parser, to be used soon by Fariborz Jahanian · 12 years ago
- 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
- 39700f8 objective-c++ parsing. Turn off delayed parsing by Fariborz Jahanian · 12 years ago
- 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
- b0ed95c Obj-C++11 parser: handle a fall out of delayed by Fariborz Jahanian · 12 years ago
- 3b5f9dc Obj-C++11 parser: fix broken parsing of c-function by Fariborz Jahanian · 12 years ago
- cda1041 Obj-C++11 parser: turn off buffering of by Fariborz Jahanian · 12 years ago
- a1eec4b objective-c: Refactor parse/sema portion of by Fariborz Jahanian · 12 years ago
- 6c89eaf objective-c: just as we have done for method definitions, by Fariborz Jahanian · 12 years ago
- 139be70 A ':' after an enum-specifier at class scope is a bitfield, not a typo for a ';'. by Richard Smith · 12 years ago
- f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 12 years ago
- e75d9cf Use -frewrite-includes for crash reports. by David Blaikie · 12 years ago
- 0963017 Support the use of "=delete" and "=default" with delayed template by Douglas Gregor · 12 years ago
- 8decdee Whitespace. by Chad Rosier · 12 years ago
- c9f3517 Extend the "expected ';' after struct" logic to also apply to enums, and to by Richard Smith · 12 years ago
- 1e12b3d Recognize GNU attributes after 'enum class'. Fixes the libc++ build. by John McCall · 12 years ago
- 2edf0a2 Clean up a large number of C++11 attribute parse issues, including parsing by Sean Hunt · 12 years ago
- 28ad063 Support L__FUNCTION__ in microsoft mode, PR11789 by Nico Weber · 12 years ago
- c1fb542 Perform typo correction for base class specifiers. by Kaelyn Uhrain · 12 years ago
- 56242ba objective-c: deprecated C-like parameters in Objective-C by Fariborz Jahanian · 12 years ago
- b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
- 056e2c3 Unbreak GCC build: GCC doesn't like clang::Parser::CommentHandler and class clang::CommentHandler to have same name. by Dmitri Gribenko · 12 years ago
- aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
- 8e083e7 Reapply r158700 and fixup patches, minus one hunk that slipped through and by Sean Hunt · 12 years ago
- fc685ac Reapplying the changes from r158717 as they were rolled back to avoid merge conflicts from a separate problematic patch. by Aaron Ballman · 12 years ago
- 3532936 Revert r158700 and dependent patches r158716, r158717, and r158731. by Jakob Stoklund Olesen · 12 years ago
- 38b0603 Documentation cleanup: fixing file headers to use Doxygen \file markup while by James Dennett · 12 years ago
- 9416d42 Revert predefined decl tracking. by Meador Inge · 12 years ago
- ed35fd1 Improves parsing and semantic analysis for MS __declspec attributes. This includes support for the align (which fixes PR12631). by Aaron Ballman · 12 years ago
- bfcb037 Improve the specification of spellings in Attr.td. by Sean Hunt · 12 years ago
- 93f95f2 Handle C++11 attribute namespaces automatically. by Sean Hunt · 12 years ago
- adc6cbf [MSExtensions] Add support for __forceinline. by Michael J. Spencer · 12 years ago
- 19a2702 Extend the error recovery for a template-argument-list terminated by '>>' to by Richard Smith · 12 years ago
- e30d3ff Documentation cleanup: by James Dennett · 12 years ago
- 50dc12a Recover when correcting an unknown type name to a keyword like "struct". by Kaelyn Uhrain · 12 years ago
- 7bf3340 Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use. by Kaelyn Uhrain · 12 years ago
- 03f1eb0 Check the parameter lists and return type of both blocks and lambdas by Douglas Gregor · 12 years ago
- 7a90c8b Documentation cleanup: escape Objective-C @ symbols in Doxygen comments. by James Dennett · 12 years ago
- b3b26bf [ms-inline-asm] The __asm keyword is a statement separator, so multiple asm by Chad Rosier · 12 years ago
- a01eddb [ms-inline-asm] Cleanup MS style inline assembly parsing. by Chad Rosier · 12 years ago
- 54655be If parsing a trailing-return-type fails, don't pretend we didn't have one at by Richard Smith · 12 years ago
- 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
- 17d26a6 Documentation cleanup, fixing Doxygen markup. Mostly this avoids common terms by James Dennett · 12 years ago
- ca52330 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 12 years ago
- c86c40b Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope by Douglas Gregor · 12 years ago
- facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
- d73ef13 Add pedantic warning -Wempty-translation-unit (C11 6.9p1). by Jordan Rose · 12 years ago
- 6d1de1b objc: position of 'fixit' was off by one. by Fariborz Jahanian · 12 years ago
- c052dbb Recognize the MS inheritance attributes and turn them into attributes by John McCall · 12 years ago
- 18df0eb objective-c: provide a useful 'fixit' suggestion when by Fariborz Jahanian · 12 years ago
- 268efba CXXThisScopeRAII objects aren't free, don't compute one if it's unused. by Benjamin Kramer · 12 years ago