- 3bc2226 PR13652: Don't assume the parameter array on a FunctionTypeLoc for a lambda will by Richard Smith · 12 years ago
- 318cc3c Change -analyzer-config to use '=' as the key-value separator, and only by Ted Kremenek · 12 years ago
- 50f88b9 Reland r160052: Default to -std=c++11 on Windows. by Nico Weber · 12 years ago
- 5666988 Tooling: Add a runToolOnCodeWithArgs() function that allows by Nico Weber · 12 years ago
- c586d5d Fix a crash in type merging with enum types. by Eli Friedman · 12 years ago
- ecbbea4 Emit .gcda files as absolute paths instead of relative paths. by Bill Wendling · 12 years ago
- 554067f [analyzer] Stop tracking symbols based on a retain count summary of by Anna Zaks · 12 years ago
- 28694c1 [analyzer] Fixup 162863. by Anna Zaks · 12 years ago
- 9af9122 Fix serious regression introduced in r157780 where __attribute__((NSObject)) by Ted Kremenek · 12 years ago
- 80de487 [analyzer] Improved diagnostic pruning for calls initializing values. by Anna Zaks · 12 years ago
- a484fc7 Make alignment computation for pointer values for builtins handle by Eli Friedman · 12 years ago
- 600a513 Define __mips64 / __mips64__ macros for MIPS 64-bit targets. by Simon Atanasyan · 12 years ago
- 1d8ae1d Use getTargetDefines() virtual function in MipsTargetInfoBase successors by Simon Atanasyan · 12 years ago
- d4935a0 Factor out MIPS macro definitions common for all MIPS targets. by Simon Atanasyan · 12 years ago
- 48def65 Move TLS check from LValueExprEvaluator::VisitVarDecl to by Hans Wennborg · 12 years ago
- a414a2f objective-C: make -Widiomatic-parentheses work by Fariborz Jahanian · 12 years ago
- e40c423 Fixed a problem with #pragma push_macro/pop_macro implementation. by Alexander Kornienko · 12 years ago
- 260e506 Define _MIPS_ARCH and _MIPS_ARCH_<cpu name> macros for MIPS targets. by Simon Atanasyan · 12 years ago
- a14f400 Reversing the logic since C99 mode is actually not an extension. Also, changing the group to the singular to match the diagnostic better. by Aaron Ballman · 12 years ago
- 29f431b Fix r162835 as per Richard's comments. by Hans Wennborg · 12 years ago
- ae7a66f The address of a TLS var is not compile-time constant (PR13720) by Hans Wennborg · 12 years ago
- 7b73e08 Add new -cc1 driver option -analyzer-config, which allows one to specify by Ted Kremenek · 12 years ago
- 73212df [analyzer] C++ objects returned on the stack may be wrapped in ExprWithCleanups. by Jordan Rose · 12 years ago
- 8a64bb5 Keep history of macro definitions and #undefs by Alexander Kornienko · 12 years ago
- ec2a396 Modifes BoundNodes to store void* and allow casting them by Manuel Klimek · 12 years ago
- a23bd4c objective-C arc: ns_returns_retained is a type attribute in ARC, by Fariborz Jahanian · 12 years ago
- ffb155f Only add common tool options when CommonOptionsParser is used. by Alexander Kornienko · 12 years ago
- b706d90 Revert r162424 now that the scoping issue has been fixed in r162444. by Chad Rosier · 12 years ago
- d1a8d2e [ms-inline asm] Have MSAsmStmts use the generic EmitAsmStmt codegen function. by Chad Rosier · 12 years ago
- c828620 Splitting the duplicated decl spec extension warning into two: one is an ExtWarn and the other a vanilla warning. This addresses PR13705, where const char const * wouldn't warn unless -pedantic was specified under the right conditions. by Aaron Ballman · 12 years ago
- 827eeb6 [analyzer] Teach CallEventManager that CXXTemporaryObjectExpr is also a ctor. by Jordan Rose · 12 years ago
- 632e502 [analyzer] When we look for the last stmt in a function, skip implicit dtors. by Jordan Rose · 12 years ago
- c0c0066 CUDA: give static storage class to __shared__ and __constant__ by Peter Collingbourne · 12 years ago
- 1aba778 CUDA: give correct address space to globals declared in functions by Peter Collingbourne · 12 years ago
- 4112a4c Tidy up. by Chad Rosier · 12 years ago
- 00d1637 [ms-inline asm] Have generateAsmString() return the AsmString computed by Sema. by Chad Rosier · 12 years ago
- 89fb6d7 [ms-inline asm] Add constraints to MSAsmStmt. We don't currently compute by Chad Rosier · 12 years ago
- a23b91d [ms-inline asm] Rename EmitGCCAsmStmt to EmitAsmStmt and have it accept by Chad Rosier · 12 years ago
- 9252701 [ms-inline asm] Use dyn_cast<> here to simplify logic. by Chad Rosier · 12 years ago
- 65e209a [analyzer] Don't purge dead symbols at the end of calls if -analyzer-purge=none. by Jordan Rose · 12 years ago
- aba59aa [ms-inline asm] Make the AsmStmt class non-virtual. by Chad Rosier · 12 years ago
- 36d5cea Fix PR13704 by Michael Liao · 12 years ago
- 88617a2 Warn about suspicious implicit conversions from floating point to bool by Hans Wennborg · 12 years ago
- 9438016 Cleanup FreeBSD linking and add support for -pie. by Roman Divacky · 12 years ago
- 02e221b Fix for assertion when solving unresolved templates. Patch by Magee, Josh. by Rafael Espindola · 12 years ago
- 4c3b8a3 Fix a -Wdocumentation warning. by Dmitri Gribenko · 12 years ago
- c88c6a4 Merging consecutive comments: be more conservative. by Dmitri Gribenko · 12 years ago
- a1f81bb [analyzer] Rename addTrackNullOrUndefValueVisitor to trackNullOrUndefValue. by Jordan Rose · 12 years ago
- 166b7bd [analyzer] Refactor FindLastStoreBRVisitor to not find the store ahead of time. by Jordan Rose · 12 years ago
- 7aba117 [analyzer] If the last store into a region came from a function, step into it. by Jordan Rose · 12 years ago
- 6062334 [analyzer] Rename CallEvent::mayBeInlined to CallEvent::isCallStmt. by Jordan Rose · 12 years ago
- c4fb221 [ms-inline asm] Hoist more common code into the AsmStmt base class. Add stubs by Chad Rosier · 12 years ago
- 33f0558 [ms-inline asm] Add virtual function, getClobber, that returns a StringRef. by Chad Rosier · 12 years ago
- 5c7f594 [ms-inline asm] Rename getClobber to getClobberStringLiteral. No functional by Chad Rosier · 12 years ago
- 06d4368 CodeGen: Hoist check from recursive function to its only callsite. by Benjamin Kramer · 12 years ago
- cfa07e3 CodeGen: When emitting stores for an initializer, only emit a GEP if we really need the store. by Benjamin Kramer · 12 years ago
- 9804b76 MIPS: Use -G option to specify MIPS section threshold. Translate it by Simon Atanasyan · 12 years ago
- da083b2 [ms-inline asm] Rename GenerateAsmString to generateAsmString to conform with by Chad Rosier · 12 years ago
- 364b9f9 [analyzer] Look through casts when trying to track a null pointer dereference. by Jordan Rose · 12 years ago
- 066ef86 [ms-inline asm] Hoist common logic into the AsmStmt base class. by Chad Rosier · 12 years ago
- 728581e [ms-inline asm] Add a new base class, AsmStmt, for the GCCAsmStmt and MSAsmStmt by Chad Rosier · 12 years ago
- 6fe4dfb [analyzer] Don't inline constructors for objects allocated with operator new. by Jordan Rose · 12 years ago
- 210f5a2 [analyzer] More internal stats collection. by Anna Zaks · 12 years ago
- efe97d6 Use cast<> instead of static_cast. Patch by Timur Iskhodzhanov! by John McCall · 12 years ago
- c210cb7 [analyzer] Inline constructors for any object with a trivial destructor. by Jordan Rose · 12 years ago
- be22cb8 Support MIPS DSP Rev2 intrinsics. The patch reviewed by Akira Hatanaka. by Simon Atanasyan · 12 years ago
- 80fd37a Tweak the ARC-requires-10.6 diagnostic according to Jordan's review. by John McCall · 12 years ago
- b41ba1a Fix a CodeGen bug where we would skip zero-initialization for by Eli Friedman · 12 years ago
- 5b092ef Remove spurious string literal for bool argument. by Richard Smith · 12 years ago
- 6c4590f _HAS_CHAR16_T_LANGUAGE_SUPPORT is not predefined MSVC macro. by Francois Pichet · 12 years ago
- fb60914 Fix the CC-matching logic for instance methods in the MS ABI. by John McCall · 12 years ago
- 2612e9f Fix the mangling of function pointers in the MS ABI. by John McCall · 12 years ago
- 3682f1e [analyzer] Use the common evalBind infrastructure for initializers. by Jordan Rose · 12 years ago
- 9d3e226 -fcatch-undefined-behavior: add the -ftrapv checks to the set of things caught by Richard Smith · 12 years ago
- df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
- e91a497 Remove RequireCompleteType call which was made redundant by r162586. by Richard Smith · 12 years ago
- cd518a0 [ms-inline asm] Update the AST Reader/Writer for MS-style inline asms. by Chad Rosier · 12 years ago
- 129a60b objective-C: Do not warn if align attribute on method by Fariborz Jahanian · 12 years ago
- c831d8b Fix integer unsigned behavior in clang due to signed left shift overflow. by Richard Smith · 12 years ago
- 8bddeb5 When computing the effective context for access control, by John McCall · 12 years ago
- 56d7f23 [ms-inline asm] Change the -fenable-experimental-ms-inline-asm option from a by Chad Rosier · 12 years ago
- 32f3acc Remove unnecessary calls to c_str. by Benjamin Kramer · 12 years ago
- 42f48fb Instantiate class template specializations during ADL. by John McCall · 12 years ago
- a6e28f2 objective-C: When checking for valid overriden property by Fariborz Jahanian · 12 years ago
- 3d57813 Rename the "experimental" checker package to "alpha". We will then refine by Ted Kremenek · 12 years ago
- b75e260 Rework how PathDiagnosticConsumers pass knowledge of what files they by Ted Kremenek · 12 years ago
- 1708360 Fix 80-column violation. by Chad Rosier · 12 years ago
- 9edd2c8 Comment diagnostics: for unresolved parameters, do not suggest parameter fixit by Dmitri Gribenko · 12 years ago
- be3ace8 [ms-inline asm] Refactor code. No functional change intended. by Chad Rosier · 12 years ago
- 1016bdf [ms-inline asm] Generate the Input/Output expressions using by Chad Rosier · 12 years ago
- 23df243 [analyzer] If we dereference a NULL that came from a function, show the return. by Jordan Rose · 12 years ago
- 8a30e77 Fix 80-column violation. by Chad Rosier · 12 years ago
- 3b6bef9 Push ArrayRef through the Expr hierarchy. by Benjamin Kramer · 12 years ago
- 916978a Fix the definition of JSONAnchorSource. MSVC mangles variable symbols, and "volatile" affects. by NAKAMURA Takumi · 12 years ago
- 3d1125b Teach CFG that 'if (x & 0)' and 'if (x * 0)' is an unfeasible branch. by Ted Kremenek · 12 years ago
- 7fd90b0 Use LLVM's plugin registry to enable registering new compilation by Daniel Jasper · 12 years ago
- 55dd956 [analyzer] Fix realloc related bug in the malloc checker. by Anna Zaks · 12 years ago
- 4f534e7 [analyzer] Remove unnecessary code. by Anna Zaks · 12 years ago
- 2c9f87c New -fcatch-undefined-behavior features: by Richard Smith · 12 years ago
- 6fbe982 Updated LibTooling.html, minor improvements in CommonOptionsParser by Alexander Kornienko · 12 years ago