- 49009ec When loading a module that involves submodules (e.g., std.vector), by Douglas Gregor · 13 years ago
- dc8dab6 Add bigger method type encodings to protocol objects. <rdar://problem/10492418> by Bob Wilson · 13 years ago
- 3d3589d Switch the module-loading interfaces and parser from a simple by Douglas Gregor · 13 years ago
- c8d7f58 Revert r145244. It causes us to create broken ASTs with missing type information by Richard Smith · 13 years ago
- 6649014 Eliminate the -emit-module option, which emitted a module by parsing a by Douglas Gregor · 13 years ago
- 2cbe84d Place "use @dynamic or provide a method implementation" warnings under a -W flag. by Ted Kremenek · 13 years ago
- f9e357d Teach the module import mechanism how to rebuild modules expressed via by Douglas Gregor · 13 years ago
- 804c3bf Expose the printing of module maps as part of the ModuleMap::Module by Douglas Gregor · 13 years ago
- 2fea224 Fix leaking of LexedMethod objects created for caching objc method definitions tokens by Argyrios Kyrtzidis · 13 years ago
- 874d253 PR10101: Recover better from a common copy-paste error: if a function by Richard Smith · 13 years ago
- 9b2eb7b objc: warn if NSObject attribute appears other than in a typedef. by Fariborz Jahanian · 13 years ago
- a4d36a6 When attempting to load a module that is not in the module cache, by Douglas Gregor · 13 years ago
- 426a16d [analyzer] Minor cleanup of SValBuilder: Comments + code reuse. by Anna Zaks · 13 years ago
- d3c147f objc: turn warning for property type mismatch in by Fariborz Jahanian · 13 years ago
- 56f5d36 Removed useless ImplicitCast nodes in explicit cstyle and static casts by Nicola Gigante · 13 years ago
- 3e627ae Install c-index-test and clang-c/Index.h as internal files. rdar://10217046 by Bob Wilson · 13 years ago
- 6f3ce97 [libclang] Indexing API: If the client requested to get a CXTranslationUnit after by Argyrios Kyrtzidis · 13 years ago
- 991bf49 [libclang] Indexing API: Capture diagnostics during indexing. by Argyrios Kyrtzidis · 13 years ago
- 13dc8f9 Reference initialization with initializer lists. by Sebastian Redl · 13 years ago
- a5aa96d Wordsmith the -Warray-bounds diagnostic text a bit by Matt Beaumont-Gay · 13 years ago
- 6efd4c5 Add feature to diagnostics that will provide more information on function by Richard Trieu · 13 years ago
- c14a03d [libclang] Fix operations (token annotation, getting cursor, etc.) with a file region by Argyrios Kyrtzidis · 13 years ago
- 2957e6f [libclang] Indexing API: Support C++ symbols. by Argyrios Kyrtzidis · 13 years ago
- b619688 implement __has_feature(address_sanitizer); also use LangOpts.AddressSanitizer instead of CodeGenOpts.AddressSanitizer by Kostya Serebryany · 13 years ago
- c18c423 Add driver arguments -ftemplate-depth=N and -fconstexpr-depth=N, with the same by Richard Smith · 13 years ago
- 5d4d980 Teach the driver about failure result files, which are compilation by Peter Collingbourne · 13 years ago
- 1c2e933 Allow preprocessor callbacks to recover from a "file not found" error, by Douglas Gregor · 13 years ago
- 1bea880 Add support for pretty-printing attributes, from Richard Membarth! by Douglas Gregor · 13 years ago
- 22c107b Fixed HadMultipleCandidates loading. by Abramo Bagnara · 13 years ago
- ecff7c8 Driver: Remove the signal number from the "command failed" diagnostic. by Benjamin Kramer · 13 years ago
- 459001f Initialize ImplicitConversionSequence::ListInitializationSequence. Fixes PR11394 by Douglas Gregor · 13 years ago
- 7955a25 Add missing initialization in the ContentCache. Seriously, when do by Douglas Gregor · 13 years ago
- 8a0c5c2 Refine placement of LangOptions object in CompilerInvocation by adding a new baseclass CompilerInvocationBase with a custom copy constructor. This ensures that whenever the CompilerInvocation object's copy constructor is used we always clone the LangOptions object. by Ted Kremenek · 13 years ago
- 88c2596 Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue by Argyrios Kyrtzidis · 13 years ago
- b395c63 [libclang] Indexing API: by Argyrios Kyrtzidis · 13 years ago
- 0d339d0 [analyzer] Do not conjure a symbol when we need to propagate taint. by Anna Zaks · 13 years ago
- d3b74d9 Make 'LangOptions' in CompilerInvocation a heap-allocated, reference counted object. I discovered that llvm::RefCountedBase<T> has by Ted Kremenek · 13 years ago
- 64595fa [analyzer] Add a helper method. by Anna Zaks · 13 years ago
- e24f5fc Constant expression evaluation: add support for evaluation of member pointers by Richard Smith · 13 years ago
- c69c42e When making a suggestion regarding which module to load rather than by Douglas Gregor · 13 years ago
- a865405 Add the notion of "framework" modules to module maps. Framework by Douglas Gregor · 13 years ago
- 6fe2965 Include named unions in union member init checking by David Blaikie · 13 years ago
- 09fe1bb Actually free memory for the module maps by Douglas Gregor · 13 years ago
- 2821c7f When we're loading a framework header, first try to turn the framework by Douglas Gregor · 13 years ago
- eeea7c4 [analysis] Constify CheckerContext. by Anna Zaks · 13 years ago
- 8687397 [analyzer] Put CheckerConext::getCalleeName out of line. by Anna Zaks · 13 years ago
- adb9799 A module with an umbrella header assumes that all of the headers in by Douglas Gregor · 13 years ago
- a081da5 Implement (de-)serialization of the buffer contents for an overridden by Douglas Gregor · 13 years ago
- ceac1d6 [analyzer] Adding basic building blocks for taint propagation. by Anna Zaks · 13 years ago
- fc06f98 [analyzer] Cleanup (NULL -> 0, no doxygen in cpp). by Anna Zaks · 13 years ago
- c24b4f6 [analyzer] Assert if we ever get an over constrained state. by Anna Zaks · 13 years ago
- 0e12ebf [analyzer] Factor getCalleeName to the checker context. by Anna Zaks · 13 years ago
- 1b4eca6 Add -f[no-]address-sanitizer flag by Kostya Serebryany · 13 years ago
- 261e75b When building a module from a module map that isn't simply an umbrella by Douglas Gregor · 13 years ago
- db1cde7 Add support for building a module from a module map to the -cc1 by Douglas Gregor · 13 years ago
- d2536a6 Revert r144703. It was a dumb idea anyway; will add the new bits more by Douglas Gregor · 13 years ago
- b8691df Split GenerateModuleAction into its own action, which will start by Douglas Gregor · 13 years ago
- b86b8dc Add a -cc1-level option -fmodule-name=<name>, which will be used when by Douglas Gregor · 13 years ago
- bf2e680 Add -Wmismatched-method-attributes flag for when attributes in method definition and by Fariborz Jahanian · 13 years ago
- dce6327 Warning option typo correction: When two options have the same edit_distance don't display either. by Benjamin Kramer · 13 years ago
- 40f57ee Use Decl's isImplicit field to indicate whether an ObjCInterfaceDecl is 'ImplicitInterfaceDecl', by Argyrios Kyrtzidis · 13 years ago
- 21ee570 [libclang] Introduce a new function to apply the indexing callbacks on an existing by Argyrios Kyrtzidis · 13 years ago
- 32509f1 Resolve placeholder expressions before trying to deduce by John McCall · 13 years ago
- 639d5b8 A space in a diagnostic group is a bead idea. by Benjamin Kramer · 13 years ago
- a70cb9d Print a typo correction hint for unknown warning flags. by Benjamin Kramer · 13 years ago
- c71d554 [libclang] Slight changes to the indexing API and bigger internal changes for it. by Argyrios Kyrtzidis · 13 years ago
- b302996 Use Sema::RequireCompleteType to check for the completeness of by Douglas Gregor · 13 years ago
- 2bbcd5c ARC: make assignment to 'self' within class methods illegal. Fixes <rdar://problem/10416568>. by Ted Kremenek · 13 years ago
- 5a17499 [PCH] Load the chained objc categories only after recursive loading is finished by Argyrios Kyrtzidis · 13 years ago
- c80553e [PCH] Do not crash if a class extension in a chained PCH introduces/redeclares a property. by Argyrios Kyrtzidis · 13 years ago
- 67bc4ba [PCH] In ASTWriter::WriteChainedObjCCategories use getDeclID since the decls by Argyrios Kyrtzidis · 13 years ago
- 590ad93 [PCH] When chaining a PCH and serializing HeaderSearch, make sure the HeaderFileInfos by Argyrios Kyrtzidis · 13 years ago
- e2d4f4e Fix the signature of the getcontext builtin. Patch by Dimitry Andric. by Rafael Espindola · 13 years ago
- 1bf9a9e Represent an APValue based on a Decl as that Decl, rather than a DeclRefExpr by Richard Smith · 13 years ago
- 1a43415 Add a method in ASTMutationListener for the last use of Decl's [is/set]ChangedSinceDeserialization by Argyrios Kyrtzidis · 13 years ago
- ad834d5 [PCH] When completing an objc forward reference, do not serialize the chain of its categories because by Argyrios Kyrtzidis · 13 years ago
- 5bbe816 Remove unnecessary 'else's after 'return's. by David Blaikie · 13 years ago
- 6ec43ad [libclang] Further simplify the indexing API. by Argyrios Kyrtzidis · 13 years ago
- 2669797 Implement a minor optimization when loading module maps to satisfy a by Douglas Gregor · 13 years ago
- cf70d78 When searching for a module, speculatively load module maps to see if by Douglas Gregor · 13 years ago
- 484535e Teach the search for modules to consider modules described by a module by Douglas Gregor · 13 years ago
- 9793e8f Fix some typos, grammar errors, etc. in cursor kind descriptions by Douglas Gregor · 13 years ago
- 65f3b5e Wire up the mapping from header files mentioned in module maps over to by Douglas Gregor · 13 years ago
- 8b6d3de Resolve the header files named in module map "header" and "umbrella" by Douglas Gregor · 13 years ago
- 39d3196 Extend -Wno-bind-to-temporary-copy and -Wno-{unnamed,local}-type-template-args by Richard Smith · 13 years ago
- 72cd7a0 Rename SPECIAL_TYPE_jmp_buf and SPECIAL_TYPE_sigjmp_buf to follow the by Douglas Gregor · 13 years ago
- a30cfe5 Introduce basic support for parsing module map files. by Douglas Gregor · 13 years ago
- cc1af78 Place 'argument unused during compilation' under a -W flag. Fixes <rdar://problem/10403653>. by Ted Kremenek · 13 years ago
- ab336c1 include/clang-c/Index.h: Update CINDEX_LINKAGE on 6 decls. Corresponds to libclang.exports in r144343 by NAKAMURA Takumi · 13 years ago
- 8e23806 I predict that HeaderSearch will need the ability to generate by Douglas Gregor · 13 years ago
- dd93c59 [libclang] Simplify the indexing API. by Argyrios Kyrtzidis · 13 years ago
- ba49103 Add a const version of ObjCClassDecl::getForwardDecl, no functionality change. by Argyrios Kyrtzidis · 13 years ago
- 36f6e30 Add top-level driver option '--serialize-diagnostics' for serialize compiler diagnostics to a file. by Ted Kremenek · 13 years ago
- 3fe0aad include/clang/AST/APValue.h: Try to fix *900* of cast-qual warnings by g++. by NAKAMURA Takumi · 13 years ago
- 1532217 serialized diagnostics: implement full deserialization of clang diagnostics via the libclang API. by Ted Kremenek · 13 years ago
- 180f479 Constant expression evaluation: support for evaluation of structs and unions of by Richard Smith · 13 years ago
- 80ee6e8 There's no good reason to track temporaries in ExprWithCleanups, by John McCall · 13 years ago
- 3472089 Fix some additional x86 intrinsics to use "I" (ICE) markings. Fix *mmintrin.h to take them into account. by Eli Friedman · 13 years ago
- cb6542f Fix the signature of __sigsetjmp and sigsetjmp. Patch by Dimitry Andric. by Rafael Espindola · 13 years ago
- ba243b5 Fixing 80 col violations (& removing any trailing whitespace on files I was touching anyway) by David Blaikie · 13 years ago