aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-02-23Prefer 'and' over '&' in comments.David Blaikie
2013-02-23Shrink SmallPtrSet. It gets swapped a lot which copies the whole small part.Benjamin Kramer
2013-02-23Add streamed versions of getQualifiedNameAsString.Benjamin Kramer
2013-02-23Remove data member MSAsmStmt::AsmLoc, wrongly hiding AsmStmt::AsmLoc.Enea Zaffanella
2013-02-23Don't recognize unnamed pointer parameters as casts.Daniel Jasper
2013-02-23Allow splitting between string literals and identifiers.Daniel Jasper
2013-02-23Implement __builtin_eh_return_data_regno() for ARM and MIPS.Logan Chien
2013-02-23clang/AST/Decl.h: Add "raw_ostream.h" to appease msvc.NAKAMURA Takumi
2013-02-23ubsan: Emit bounds checks for array indexing, vector indexing, and (in really...Richard Smith
2013-02-23Test that attribute(availability) doesn't override private_extern.John McCall
2013-02-23Remove the CFGElement "Invalid" state.David Blaikie
2013-02-23Remove the hack that avoided mangling static functions in extern C contexts.Rafael Espindola
2013-02-23Revert r175912, "Add support for coldcc to clang" at John's request.Peter Collingbourne
2013-02-22Propagate the split dwarf file information through into the backendEric Christopher
2013-02-22[libclang] Fix assertion hit when code-completing inside a function macro wit...Argyrios Kyrtzidis
2013-02-22objective-C arg: provide fixit support whenFariborz Jahanian
2013-02-22Update tests so that we don't test for function-only attributes on call sites.Bill Wendling
2013-02-22Driver: Pass down the -march setting down to -cc1as on x86 too.Benjamin Kramer
2013-02-22Make sure we apply attributes to correct places.Bill Wendling
2013-02-22Split out the command handling for split debug info, we're goingEric Christopher
2013-02-22[analyzer] Don't canonicalize the RecordDecl used in CXXBaseObjectRegion.Jordan Rose
2013-02-22Add support for coldcc to clangPeter Collingbourne
2013-02-22[preprocessing record] Have the MacroDefinitions map point to the MacroDefini...Argyrios Kyrtzidis
2013-02-22Replace some typically large vectors with SmallVector.Benjamin Kramer
2013-02-22Make sure pragmas don't attach visibility attributes to auto variables withRafael Espindola
2013-02-22Suppress -Wswitch to unbreak the build.David Blaikie
2013-02-22[Sema] Semantic analysis for empty-declaration and attribute-declaration.Michael Han
2013-02-22Use raw_ostream::indent, update comment.Benjamin Kramer
2013-02-22Push the raw_ostream through the template diffing code.Benjamin Kramer
2013-02-22Streamify FormatASTNodeDiagnosticArgument.Benjamin Kramer
2013-02-22Streamify getNameForDiagnostic and remove the string versions of PrintTemplat...Benjamin Kramer
2013-02-22Comment parsing: add CommentOptions to allow specifying custom comment block ...Dmitri Gribenko
2013-02-22StmtPrinter: Directly print types to the stream instead of taking a detour th...Benjamin Kramer
2013-02-22Fix MergeFunctionDecl implicit CC for static methods.Timur Iskhodzhanov
2013-02-22scan-build: Remove debug print.Benjamin Kramer
2013-02-22C++11 status page:Richard Smith
2013-02-22Don't crash if we try to apply 'alignas' to a variable declared with anRichard Smith
2013-02-22Don't accidentally and silently accept C++11 attributes in decl-specifier-seqsRichard Smith
2013-02-22Update to use references to attribute groups instead of listing the attribute...Bill Wendling
2013-02-22Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributesRichard Smith
2013-02-22Handle alignas(foo...) pack expansions.Richard Smith
2013-02-22In LookupResult::resolveKind(), when handling multiple found declarations, ig...Argyrios Kyrtzidis
2013-02-22When a parameter list in a C function has an error, recover by forming a K&R ...Argyrios Kyrtzidis
2013-02-22Don't crash when applying an alloc_size attribute on a K&R function.Argyrios Kyrtzidis
2013-02-22Don't skip '_Alignas' when disambiguating 'final'. '_Alignas' can't appear here,Richard Smith
2013-02-22Teach -ast-print how to print trailing-return-types.Richard Smith
2013-02-22[analyzer] Implement "Loop executed 0 times" diagnostic correctly.Ted Kremenek
2013-02-22Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out ofRichard Smith
2013-02-22[libclang] Fix a crash with invalid code, while skip function bodies is enabled.Argyrios Kyrtzidis
2013-02-22Decl.cpp/mergeTemplateLV(): Tweak a description. [-Wdocumentation]NAKAMURA Takumi