- 4eb17e5 Added PR number for failing win64 tests. by Fariborz Jahanian · 12 years ago
- 0ff72fc Re-add clang-format tests to clang/test. by Daniel Jasper · 12 years ago
- 2de19ed [analyzer] Adds cplusplus.NewDelete checker that check for memory leaks, double free, and use-after-free problems of memory managed by new/delete. by Anton Yartsev · 12 years ago
- 8f7bfb4 [analyzer] Teach ConstraintManager to ignore NonLoc <> NonLoc comparisons. by Jordan Rose · 12 years ago
- f449244 Simplify code. No functionality change. by Benjamin Kramer · 12 years ago
- 2951187 Reject -no-integrated-as on windows. by Rafael Espindola · 12 years ago
- 1db7040 Generate metadata to implement the -cl-kernel-arg-info option. by Guy Benyei · 12 years ago
- e8b87f9 Don't actually invoke codegen in driver test. by Benjamin Kramer · 12 years ago
- 495cfa4 Make clang to mark static stack allocations with lifetime markers to enable a more aggressive stack coloring. by Nadav Rotem · 12 years ago
- 4a79296 Revert svn r176894 and r177658. by Bob Wilson · 12 years ago
- b6a6079 Under ARC, when we're passing the address of a strong variable by John McCall · 12 years ago
- 060fe33 Strip off local qualifiers when converting from RecordType to by Richard Trieu · 12 years ago
- 4708b3d [analyzer] Teach constraint managers about unsigned comparisons. by Jordan Rose · 12 years ago
- a339cd6 [analyzer] Loc-Loc operations (subtraction or comparison) produce a NonLoc. by Jordan Rose · 12 years ago
- e30024c [analyzer] CmpRuns.py: Accept single files as input. by Jordan Rose · 12 years ago
- 2816989 [analyzer] Also transform "a < b" to "(b - a) > 0" in the constraint manager. by Jordan Rose · 12 years ago
- 8569281 Add reverseComparisonOp and negateComparisonOp to BinaryOperator. by Jordan Rose · 12 years ago
- 78114a5 [analyzer] Translate "a != b" to "(b - a) != 0" in the constraint manager. by Jordan Rose · 12 years ago
- 8958efa [analyzer] Use SymExprs to represent '<loc> - <loc>' and '<loc> == <loc>'. by Jordan Rose · 12 years ago
- 1686137 documentation parsing: when providing code completion comment by Fariborz Jahanian · 12 years ago
- b095782 [analyzer] Warn when a nil key or value are passed to NSMutableDictionary and ensure it works with subscripting. by Anna Zaks · 12 years ago
- 683d256 [analyzer] Correct the stale comment. by Anna Zaks · 12 years ago
- 76e6e13 If a .syms file is available alongside a sanitizer runtime, pass it to the by Richard Smith · 12 years ago
- 984f278 Use RequireCompleteType() instead of isIncompleteType(). by Bill Wendling · 12 years ago
- 88de5a0 Add test case for PR 12921. by Ted Kremenek · 12 years ago
- ed2fc2a <rdar://problem/13479539> Only rebuild the global module cache when we're allowed to. by Douglas Gregor · 12 years ago
- 0f3a34f Revert "[analyzer] Break cycles (optionally) when trimming an ExplodedGraph." by Jordan Rose · 12 years ago
- 228094a [analyzer] Use a forward BFS instead of a reverse BFS to find shortest paths. by Jordan Rose · 12 years ago
- 03af377 [analyzer] Fix test to actually test what was intended. by Jordan Rose · 12 years ago
- 1aa4f50 [analyzer] Fix ExprEngine::ViewGraph to handle C++ initializers. by Jordan Rose · 12 years ago
- 9317ab9 [PCH/Modules] De/Serialize MacroInfos separately than MacroDirectives. by Argyrios Kyrtzidis · 12 years ago
- baa74bd [modules] When a MacroInfo object is deserialized, allocate and store its submodule ID. by Argyrios Kyrtzidis · 12 years ago
- a8a0f76 [ms-cxxabi] Implement member data pointers for non-dynamic classes by Reid Kleckner · 12 years ago
- fa69fc1 <rdar://problem/13479539> Simplify ModuleManager/GlobalModuleIndex interaction to eliminate a pile of extraneous stats(). by Douglas Gregor · 12 years ago
- c02ddb2 documentation parsing. Provide code completion comment by Fariborz Jahanian · 12 years ago
- 82f0aff These tests fail on our Window64 machine. by Fariborz Jahanian · 12 years ago
- 627707b Better fix for r177725. by Daniel Jasper · 12 years ago
- c363dbb Align comments to surrounding unformatted comments. by Daniel Jasper · 12 years ago
- 92e44d9 [cxxabi] Get ptrdiff_t from the CodeGenModule instead of caching it by Reid Kleckner · 12 years ago
- 0292519 Update docs after moving clang-format from clang-tools-extra to cfe. by Daniel Jasper · 12 years ago
- 554f63f Add clang-format to the corresponding Makefile. by Daniel Jasper · 12 years ago
- b598542 More precisely recognize ObjC method declarations. by Daniel Jasper · 12 years ago
- b2cc521 Documentation: fix a typo and formatting by Dmitri Gribenko · 12 years ago
- 8ff563c Fix DeclRefExpr::getFoundDecl() for usages by reference. by Daniel Jasper · 12 years ago
- b64eca0 Make clang-format understand more line comments. by Daniel Jasper · 12 years ago
- 5921e04 Add future directions for modules by Douglas Gregor · 12 years ago
- 5529e3e More modules documentation, including the straw-man import declaration syntax and "how to modularize a platform". by Douglas Gregor · 12 years ago
- c640058 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 12 years ago
- 9bb4a0c More documentation on the module map language. by Douglas Gregor · 12 years ago
- 08f8539 test commit by Alexey Bataev · 12 years ago
- 437da05 Warn about attempts to reinterpret_cast between two types that are by John McCall · 12 years ago
- b760f11 Fix a crash-on-valid where a block capture copy expression was by John McCall · 12 years ago
- bf8487a ubsan: Pass floating-point arguments to the runtime by value if they fit the by Richard Smith · 12 years ago
- daf2e1c <rdar://problem/13479214> Make Clang's <stddef.h> robust against system headers defining size_t/ptrdiff_t/wchar_t. by Douglas Gregor · 12 years ago
- f190f6b [analyzer] scan-build: emit errors on stderr, and exit(1) instead of exit(0). by Jordan Rose · 12 years ago
- df713ab Update debug info test case for more incoming DIBuilder changes by David Blaikie · 12 years ago
- 563060f Update debug info test case for an incoming change to DIBuilder in LLVM by David Blaikie · 12 years ago
- 892b6fb <rdar://problem/13477190> Give the Clang module cache directory some structure, so it's easier to find. by Douglas Gregor · 12 years ago
- 30262b7 Fix indentation by David Blaikie · 12 years ago
- 5bdaef5 Objective-C: Tighten the rules when warning by Fariborz Jahanian · 12 years ago
- cf4bd50 Generalize debug info tests to be forward compatible with future DISubprogram changes by David Blaikie · 12 years ago
- 595b1bc This ugly regex is required because on Windows, the paths come out as \\ delimited instead of / delimited. Fixes a test breakage since r176894. by Aaron Ballman · 12 years ago
- 0beab27 Remove unused variable. by Benjamin Kramer · 12 years ago
- 4c49f7b Avoid warnings from compilers that think you can drop off the end of a fully covered switch. by Benjamin Kramer · 12 years ago
- 7b79384 Delayed template parsing is not supported by the AST serialization system yet, so turning it off. This fixes a test breakage caused by r177336. by Aaron Ballman · 12 years ago
- f3e426b [analyzer] Print return values from debug.DumpCalls checker. by Jordan Rose · 12 years ago
- 7c22cf3 Better block comment formatting. by Alexander Kornienko · 12 years ago
- 3656c61 [ASan] Let the users to invoke `clang -fsanitize=address` to link binaries targeting the iOS simulator. by Alexander Potapenko · 12 years ago
- 222b4ea Fix a typo. by Bob Wilson · 12 years ago
- cdf2808 <rdar://problem/13037793> Allow the names of modules to differ from the name of their subdirectory in the include path. by Douglas Gregor · 12 years ago
- b9da713 Further weaken block conversion rules to permit blocks with by John McCall · 12 years ago
- b79f589 Add more testing cases for tbaa.struct by Manman Ren · 12 years ago
- 3283fc5 Debug info - generalize namespace test to not depend on a DW_TAG_file_type entry by David Blaikie · 12 years ago
- 61a574f Split ubsan runtime into three pieces (clang part): by Richard Smith · 12 years ago
- ff430f6 [ms-cxxabi] Mangle function pointer template arguments correctly by Reid Kleckner · 12 years ago
- aa55733 [analyzer] Appease buildbots: include template arguments in base class ref. by Jordan Rose · 12 years ago
- 81ba9d1 Documentation cleanup for MacroInfo. by James Dennett · 12 years ago
- 906d66a <rdar://problem/12368093> Extend module maps with a 'conflict' declaration, and warn when a newly-imported module conflicts with an already-imported module. by Douglas Gregor · 12 years ago
- f8e2c06 [analyzer] Don't invalidate globals when there's no call involved. by Jordan Rose · 12 years ago
- 74f6982 [analyzer] Track malloc'd memory into struct fields. by Jordan Rose · 12 years ago
- f8ddc09 [analyzer] Invalidate regions indirectly accessible through const pointers. by Jordan Rose · 12 years ago
- e1a2e90 [analyzer] Remove strip of ElementRegion in CallEvent::invalidateRegions. by Jordan Rose · 12 years ago
- fecedc7 refactoring file/directory for namespace debug info by David Blaikie · 12 years ago
- 8e56cd1 Enhance debug info namespace test to check for context/scope reference by David Blaikie · 12 years ago
- 695031c Do the error recovery for @end only. by Fariborz Jahanian · 12 years ago
- b02d173 [docs] Point inquisitive users to existing module.map files. by Sean Silva · 12 years ago
- c9fd186 [docs] Prominently note that modules are expemental. by Sean Silva · 12 years ago
- 4cc0cf1 Objective-C [qoi] more gracefull recovery when by Fariborz Jahanian · 12 years ago
- 36771d9 PR7256: Provide a fixit for incorrect destructor declarations by David Blaikie · 12 years ago
- 03d262b Fix typo and grammaro in modules documentation by Douglas Gregor · 12 years ago
- 2bf383d Only introduce the SDKSettings.plist dependency in modules/PCH files that don't depend on any other modules or PCH files. by Douglas Gregor · 12 years ago
- 63fd408 Exploit this-return of a callsite in a this-return function. by Manman Ren · 12 years ago
- 54a38bd Support for pointers-to-members usage via .* by Alexander Kornienko · 12 years ago
- 92f9faf Remove assertion that can be triggered on bad input. by Daniel Jasper · 12 years ago
- 6fe554e Fix infinite-loop in unwrapped line parser. by Daniel Jasper · 12 years ago
- 83a90e5 Do not consider comments when adjusting to local indent style. by Daniel Jasper · 12 years ago
- 64f0928 Reduce penalty for breaks after "(" for functions with parameters. by Daniel Jasper · 12 years ago
- f9955d3 Add extra indentation for multiline comparisons. by Daniel Jasper · 12 years ago
- bcca7e4 Don't remove all indentation when in #defines. by Daniel Jasper · 12 years ago
- 7c4a9a0 Add clang-format binary to cfe. by Daniel Jasper · 12 years ago