- fb6b25b [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
- 9371dd2 [C++11] Replacing BlockDecl iterators capture_begin() and capture_end() with iterator_range captures(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- 535bbcc [C++11] Replacing DeclStmt iterators decl_begin() and decl_end() with iterator_range decls(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- d6d25de [C++11] Replacing ObjCImplementationDecl iterators ivar_begin() and ivar_end() with iterator_range ivars(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- d85eff4 [C++11] Replacing ObjCCategoryDecl iterators propimpl_begin() and propimpl_end() with iterator_range property_impls(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- e8a7dc9 [C++11] Replacing ObjCContainerDecl iterators classmeth_begin() and classmeth_end() with iterator_range class_methods(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- f26acce [C++11] Replacing ObjCContainerDecl iterators instmeth_begin() and instmeth_end() with iterator_range instance_methods(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- d174edf Renaming the recently-created (r203830) props() range API to properties() for clarity. by Aaron Ballman · 12 years ago
- dc4bea4 [C++11] Replacing ObjCContainerDecl iterators prop_begin() and prop_end() with iterator_range props(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- dfca6f9 [C++11] Replace OwningPtr include with <memory>. by Ahmed Charles · 12 years ago
- e8a8bae [C++11] Replacing RecordDecl iterators field_begin() and field_end() with iterator_range fields(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- 43b68be [C++11] Replacing ObjCMethodDecl iterators param_begin() and param_end() with iterator_range params(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
- fc18842 RewriteObjC: Factor string literal creation into a helper and make sure it gets a proper constant array type. by Benjamin Kramer · 12 years ago
- 314cc81 Rename getResultType() on function and method declarations to getReturnType() by Alp Toker · 12 years ago
- 9cacbab Rename FunctionProtoType accessors from 'arguments' to 'parameters' by Alp Toker · 12 years ago
- d473363 Correct hyphenations in comments and assert messages by Alp Toker · 12 years ago
- 60509af Fix constructor-related typos. by Benjamin Kramer · 12 years ago
- 5ba37d5 Split isFromMainFile into two functions. by Eli Friedman · 12 years ago
- 5603df4 Use SmallVectorImpl& for function arguments instead of SmallVector. by Craig Topper · 12 years ago
- 2341c0d Use SmallVectorImpl instead of SmallVector for iterators and references to avoid specifying the vector size unnecessarily. by Craig Topper · 12 years ago
- 6ae7e50 Add 178663 back. by Rafael Espindola · 13 years ago
- 985a3ab Revert 178663. by Rafael Espindola · 13 years ago
- adea16b Don't compute a patched/semantic storage class. by Rafael Espindola · 13 years ago
- 5c38272 ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. by Jordan Rose · 13 years ago
- a7d0384 Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 13 years ago
- 048fbfa Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 13 years ago
- f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
- ac00fbc Fix indent and remove parameter with a matching default value. by Chad Rosier · 13 years ago
- 4442605 Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 13 years ago
- 7967fc1 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 13 years ago
- 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- ea70eb3 Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't pull in all the generated Attr code. by Benjamin Kramer · 13 years ago
- 998f0a3 objective-C blocks: Make sure that identical logic is used by Fariborz Jahanian · 13 years ago
- 5de91cc Add FP_CONTRACT support for clang. by Lang Hames · 13 years ago
- 76bb5cabfa Remove redundant semicolons which are null statements. by Dmitri Gribenko · 13 years ago
- 9c00446 Fixing the return type information for objc_sync_enter and objc_sync_exit. Patch thanks to Joe Ranieri! by Aaron Ballman · 13 years ago
- cdf8149 Split library clangRewrite into clangRewriteCore and clangRewriteFrontend. by Ted Kremenek · 13 years ago[Renamed (99%) from clang/lib/Rewrite/RewriteObjC.cpp]
- c215e76 Push ArrayRef through the Expr hierarchy. by Benjamin Kramer · 13 years ago
- 235341b Store SourceManager pointer on PrintingPolicy in the case where we're dumping, by Richard Smith · 13 years ago
- d9c8aac objective-c rewriter: refactoring of rewriting of by Fariborz Jahanian · 13 years ago
- 2b01318 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 13 years ago
- 40ed297 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 13 years ago
- 474261a Fix typos found by http://github.com/lyda/misspell-check by Benjamin Kramer · 13 years ago
- 2d7c57e Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 14 years ago
- 835cabe Remove few if-then-else when both branches are the same. pr12357. by Fariborz Jahanian · 14 years ago
- bbafb8a Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
- 113bee0 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 14 years ago
- 75627ad Fix the rewriter that broke with r149987. by Argyrios Kyrtzidis · 14 years ago
- 1167190 objc rewriter: start supporting modern objective-c abi by Fariborz Jahanian · 14 years ago
- a80f1bf Add IsImplicit field in ObjCMessageExpr that is true when the message by Argyrios Kyrtzidis · 14 years ago
- 598f3d2 Fix uninitialized variable warning. by Chad Rosier · 14 years ago
- cf9f3ea Fix canonicalization of protocol-qualified types by Douglas Gregor · 14 years ago
- f610267 Eliminate ObjCForwardProtocolDecl, which is redundant now that by Douglas Gregor · 14 years ago
- e6e48b1 Move the data that corresponds to the definition of a protocol into a by Douglas Gregor · 14 years ago
- 33b2429 Use declaresSameEntity() when comparing ObjCProtocolDecls, and by Douglas Gregor · 14 years ago
- deafd0b Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl by Douglas Gregor · 14 years ago
- a4b2a86 objc, objc rewriter. Fixes couple of bugs one by Fariborz Jahanian · 14 years ago
- 1640832 Move ObjCInterfaceDecl's "EndLoc" into DefinitionData, since it only by Douglas Gregor · 14 years ago
- dc9166c Keep track of all declarations of an Objective-C class (both forward by Douglas Gregor · 14 years ago
- 0b144e1 Replace all comparisons between ObjCInterfaceDecl pointers with calls by Douglas Gregor · 14 years ago
- 8307742 More refactoring of objective-C rewriter. by Fariborz Jahanian · 14 years ago
- 7b18669 More refactoring of objc rewriter. by Fariborz Jahanian · 14 years ago
- 8efef60 More objc rewriter refactoring. by Fariborz Jahanian · 14 years ago
- 68e628e Some early refactoring of objective-c rewriter. by Fariborz Jahanian · 14 years ago
- 841dd88 Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue by Argyrios Kyrtzidis · 14 years ago
- e0e6505 objc rewriter: use a more specific name for local variable used by Fariborz Jahanian · 14 years ago
- fe96e0b Change the AST representation of operations on Objective-C by John McCall · 14 years ago
- 526ab47 Restore r142914 and r142915, now with missing file and apparent by John McCall · 14 years ago
- 9a8f139 Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 14 years ago
- c4a2d32 Introduce a placeholder type for "pseudo object" by John McCall · 14 years ago
- ff4d5e4 objc rewriter: Restore objc_msgSend_stret/objc_msgSendSuper_stret declaration by Fariborz Jahanian · 14 years ago
- 942bbce objc rewriter. Fix declaration of objc_msgSend_stret/objc_msgSendSuper_stret. by Fariborz Jahanian · 14 years ago
- f937c02 Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 14 years ago
- 52f53fb Improve location fidelity of objc decls. by Argyrios Kyrtzidis · 14 years ago
- 59ad1e3 ArrayRef'ize ObjCMessageExpr by Argyrios Kyrtzidis · 14 years ago
- c0b0728 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 14 years ago
- 9c902b5 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
- 83d382b Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
- e6e67de Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. by Argyrios Kyrtzidis · 14 years ago
- 0706d20 Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. by Francois Pichet · 14 years ago
- 9f0bc57 objc rewriter - more fixes to support compiling the rewritten by Fariborz Jahanian · 14 years ago
- e1378a4 objc rewriter - Add rewriter test for new instancetype by Fariborz Jahanian · 14 years ago
- 9320b87 Give conversions of block pointers to ObjC pointers a different cast kind by John McCall · 14 years ago
- abc11aa Fix a rewriter bug caused by recent changes in objc's group decls. by Fariborz Jahanian · 14 years ago
- 3a039e3 objective-c: Treat top-level objective-c declarations by Fariborz Jahanian · 14 years ago
- 9e7dbd1 objc rewriter: Fixes a rewriting of implicit casting of an integral by Fariborz Jahanian · 14 years ago
- c7c346f objective-c rewrite: Fixes rewriting of objective-c collection by Fariborz Jahanian · 14 years ago
- d560ed7 objc rewriter - my last patch was not quite right. by Fariborz Jahanian · 14 years ago
- bce9ee2 objc rewriter - set the flag passed to _Block_object_assign/_Block_object_dispose correctly by Fariborz Jahanian · 14 years ago
- fb65e59 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 14 years ago
- d48db21 Rename getInstantiationLineNumber to getExpansionLineNumber in both by Chandler Carruth · 14 years ago
- 35f5320 Mechanically rename SourceManager::getInstantiationLoc and by Chandler Carruth · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- 9a6b098 Make more use of llvm::StringRef in various APIs. In particular, don't by Jay Foad · 14 years ago
- 938f40b Implement support for C++11 in-class initialization of non-static data members. by Richard Smith · 14 years ago
- d9c83e6 Replace a literal 8 with Context->getCharWidth() in by Ken Dyck · 15 years ago
- dda56e4 Support for C++11 (non-template) alias declarations. by Richard Smith · 15 years ago
- 57540c5 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 15 years ago
- 7524540 Add a flag to StringLiteral to keep track of whether the string is a pascal string or not. by Anders Carlsson · 15 years ago
- fae2e8d Fixup more objc rwriter bug having to do with by Fariborz Jahanian · 15 years ago