..
APValue.cpp
Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just letting them be implicitly created.
2014-08-27 06:28:36 +00:00
ASTConsumer.cpp
Sort all of Clang's files under 'lib', and fix up the broken headers
2012-12-04 09:13:33 +00:00
ASTContext.cpp
Rename TemplateArgument::getTypeForDecl to getParamTypeForDecl for clarity
2014-10-17 18:00:12 +00:00
ASTDiagnostic.cpp
Refactor one of the larger functions for Type Diffing into smaller functions.
2014-08-27 06:24:47 +00:00
ASTDumper.cpp
Fix for bug http://llvm.org/PR17427 .
2014-10-09 08:45:04 +00:00
ASTImporter.cpp
Correct importing of the type of a TemplateArgument
2014-10-22 19:54:16 +00:00
ASTTypeTraits.cpp
Fix bug in DynTypedMatcher::constructVariadic() that would cause false negatives.
2014-10-06 13:14:30 +00:00
AttrImpl.cpp
Refactor the Microsoft inheritance attribute handling so that it no longer has special treatment. Also fixes a minor bug where the attributes were being parsed as though they were GNU-style attributes when they were in fact keyword attributes.
2013-12-18 23:44:18 +00:00
CMakeLists.txt
MS ABI: Don't use the Itanium scheme for numbering lambdas
2014-08-22 04:22:50 +00:00
CXXABI.h
Header guard canonicalization, clang part.
2014-08-13 16:25:19 +00:00
CXXInheritance.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
Comment.cpp
Use llvm::makeArrayRef instead of explicitly calling ArrayRef constructor and mentioning the type. This works now that we have a conversion from ArrayRef<T*> to ArrayRef<const T*>.
2014-08-30 16:55:39 +00:00
CommentBriefParser.cpp
Some refactoring in my patch on document
2013-03-02 02:39:57 +00:00
CommentCommandTraits.cpp
Fix for PR21254 - Assertion in comment parser
2014-10-15 16:18:20 +00:00
CommentLexer.cpp
Fix some cases where StringRef was being passed by const reference. Remove const from some other StringRefs since its implicitly const already.
2014-08-30 16:55:52 +00:00
CommentParser.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
CommentSema.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
Decl.cpp
Teach SanitizerBlacklist to blacklist by SourceLocation. NFC.
2014-10-16 23:50:26 +00:00
DeclBase.cpp
Patch to wrap up '_' as separator in version numbers
2014-10-06 16:46:02 +00:00
DeclCXX.cpp
Factor code into CXXRecordDecl::getTemplateInstantiationPattern() helper
2014-10-14 20:28:40 +00:00
DeclFriend.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
DeclGroup.cpp
Sort all of Clang's files under 'lib', and fix up the broken headers
2012-12-04 09:13:33 +00:00
DeclObjC.cpp
Objective-C. Change to method lookup rules to look
2014-08-27 20:34:29 +00:00
DeclOpenMP.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
DeclPrinter.cpp
Objective-C. Assortment of improvements pretty printing
2014-10-03 20:05:33 +00:00
DeclTemplate.cpp
Convert some function arguments to use ArrayRef.
2014-06-26 04:58:53 +00:00
DeclarationName.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
Expr.cpp
Add frontend support for __vectorcall
2014-10-24 17:42:17 +00:00
ExprCXX.cpp
-ms-extensions: Implement __super scope specifier (PR13236).
2014-09-26 00:28:20 +00:00
ExprClassification.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
ExprConstant.cpp
PR21327 / C++ DR1652 / C++ DR73: comparing a past-the-end pointer for one
2014-10-21 23:01:04 +00:00
ExternalASTSource.cpp
Move virtual methods out of line.
2014-05-21 14:19:22 +00:00
InheritViz.cpp
Refer to error_code with the std prefix.
2014-06-12 20:37:59 +00:00
ItaniumCXXABI.cpp
Adds 'override' to overriding methods. NFC.
2014-10-01 16:56:40 +00:00
ItaniumMangle.cpp
Itanium ABI: Template template parameters are usable as substitutions
2014-10-24 20:22:57 +00:00
Makefile
…
Mangle.cpp
CodeGen: correct block mangling in ObjC
2014-10-14 17:20:18 +00:00
MicrosoftCXXABI.cpp
Adds 'override' to overriding methods. NFC.
2014-10-01 16:56:40 +00:00
MicrosoftMangle.cpp
Add frontend support for __vectorcall
2014-10-24 17:42:17 +00:00
NSAPI.cpp
Objective-C SDK modernizer. Patch to support modernization
2014-10-06 23:50:37 +00:00
NestedNameSpecifier.cpp
-ms-extensions: Implement __super scope specifier (PR13236).
2014-09-26 00:28:20 +00:00
ParentMap.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
RawCommentList.cpp
Comment parsing: when comment ranges are deserialized from multiple modules,
2014-03-27 15:40:39 +00:00
RecordLayout.cpp
CXXInfo memory should be released after calling the destructor
2014-05-24 07:19:25 +00:00
RecordLayoutBuilder.cpp
D5775: Fix of assertion failure in case of non-POD unions with bitfields. Patch by Evgeny Astigeevich!
2014-10-17 10:22:03 +00:00
SelectorLocationsKind.cpp
Fix crash when using archaic protocol, rdar://10238337
2011-10-05 21:28:06 +00:00
Stmt.cpp
Removing the setLBracLoc and setRBracLoc functions from CompoundStmt -- their only use was with the AST reader, and friendship can be used to handle that. Drive-by rename of "Brac" to "Brace" for the private data members. NFC.
2014-10-22 21:06:18 +00:00
StmtIterator.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
StmtPrinter.cpp
Fix for bug http://llvm.org/PR17427 .
2014-10-09 08:45:04 +00:00
StmtProfile.cpp
[OPENMP] Codegen for 'private' clause in 'parallel' directive.
2014-10-21 03:16:40 +00:00
StmtViz.cpp
…
TemplateBase.cpp
Fix the rest of PR21289: a pack expansion that we can't expand yet makes a
2014-10-17 20:56:14 +00:00
TemplateName.cpp
[C++11] Use 'nullptr'. AST edition.
2014-05-12 05:36:57 +00:00
Type.cpp
Add frontend support for __vectorcall
2014-10-24 17:42:17 +00:00
TypeLoc.cpp
Fix initializing TypeOfTypeLoc
2014-10-24 13:52:55 +00:00
TypePrinter.cpp
Add frontend support for __vectorcall
2014-10-24 17:42:17 +00:00
VTTBuilder.cpp
[C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with iterator_range bases(). Updating all of the usages of the iterators with range-based for loops.
2014-03-13 15:41:46 +00:00
VTableBuilder.cpp
Reduce double set lookups. NFC.
2014-10-10 15:32:48 +00:00