- baa4006 Don't warn when a '%%' or '%*d' (scanf) is used in a format string with positional arguments, since by Ted Kremenek · 14 years ago
- abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
- a7765a6 Update tests for r108749 by Jim Grosbach · 14 years ago
- c09b6a5 Hook up 'invalid conversion' warning for scanf format strings. by Ted Kremenek · 14 years ago
- 2543dbb Put ObjC method names, method types and class names in separate string literal by Jim Grosbach · 14 years ago
- 93fb9ed Promote the identifier table to per-file data. Also, if a CHAINED_METADATA record exists, it has to be the first thing in the PCH file. by Sebastian Redl · 14 years ago
- 1348af6 Put warnings in the 'Deprecated' group into a 'Deprecations' DiagCategory. Fixes <rdar://problem/8203182>. by Ted Kremenek · 14 years ago
- be86ecc Add missing conversion specifier parsing for 'u', 'x', 'o', and 's'. Fixes <rdar://problem/8204052>. by Ted Kremenek · 14 years ago
- 5314e44 Driver: Make -fnext-runtime the default when rewriting Objective-C. by Daniel Dunbar · 14 years ago
- 6c57322 IRgen: Add a test case I forgot to commit at some point. by Daniel Dunbar · 14 years ago
- 60baf0f Driver/Darwin: Add deployment target after doing argument translation, so that by Daniel Dunbar · 14 years ago
- c0e665e Driver: Factor out Darwin::AddDeploymentTarget. by Daniel Dunbar · 14 years ago
- 9a90d79 Remove unused location-to-AST-node resolver. libclang's implementation supercedes it by Douglas Gregor · 14 years ago
- 84ef4b2 Categories cannot synthesize property ivars, and a minor cleanup. by Fariborz Jahanian · 14 years ago
- 8a1af32 Implement support for reading arguments specified in a file with @file. If by Rafael Espindola · 14 years ago
- 7a42054 Fix construction of AnalysisContext. Thanks Daniel. by Zhongxing Xu · 14 years ago
- 2b02f7a Adjust test for float printing differences. Windows uses three digits for the exponent, everyone else two. by Benjamin Kramer · 14 years ago
- e3041be Fix http://llvm.org/PR7660 by Argyrios Kyrtzidis · 14 years ago
- 6658874 Revert r108672, "Implement support for reading arguments specified in a file by Daniel Dunbar · 14 years ago
- dfe503e tidy up comment. by Chris Lattner · 14 years ago
- 1c2ab11 Implement support for reading arguments specified in a file with @file. by Rafael Espindola · 14 years ago
- c6a36ff fix test case. by Zhongxing Xu · 14 years ago
- bc46c6b remove CallInliner.cpp. by Zhongxing Xu · 14 years ago
- 9843ba9 Add double close check to StreamChecker. Patch by Lei Zhang. by Zhongxing Xu · 14 years ago
- c6238d2 Reapply r108617. by Zhongxing Xu · 14 years ago
- 0bbad51 Driver: Change the driver to take the path to the main executable, instead of by Daniel Dunbar · 14 years ago
- e9122a3 Update for LLVM API change. by Daniel Dunbar · 14 years ago
- 06e35d3 Refactor the code a bit so that there is only one call to BuildCompilation. The by Rafael Espindola · 14 years ago
- a001c1c Driver: Fix a possible use after free. by Daniel Dunbar · 14 years ago
- 8d13d22 Fix a goof in my previous patch -- not all of the builtins return a value, some by Chandler Carruth · 14 years ago
- c00cb64 Fix mangling for static member variables of classes inside an extern "C" by Eli Friedman · 14 years ago
- ea9799c daniel doesn't hate me, he hates macpython 2.5, which by Chris Lattner · 14 years ago
- 8a6c0f1 When instantiating function definitions set parameter names to those used in template by Peter Collingbourne · 14 years ago
- 59f1ed2 Revert -Wdiscard-qual typo by Douglas Gregor · 14 years ago
- db4325b Improve the representation of the atomic builtins in a few ways. First, we make by Chandler Carruth · 14 years ago
- 9638eef BUILD_ARCHIVE is the default for libraries, no need to set it. by Chris Lattner · 14 years ago
- f0ca0ee Fix crash initializing a bit-field with a non-constant in a place where we by Eli Friedman · 14 years ago
- 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
- ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
- 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
- 3e88dcf rename test by Chris Lattner · 14 years ago
- 9d80f73 rename test by Chris Lattner · 14 years ago
- ee30965 Revert r108617, it broke the build. by Benjamin Kramer · 14 years ago
- 5a9ac23 Fix cmake build. by Zhongxing Xu · 14 years ago
- 69b8194 Prepare the analyzer for the callee in another translation unit: by Zhongxing Xu · 14 years ago
- 7374f1b clang -cc1as: Switch to using AsmParser constructor function. by Daniel Dunbar · 14 years ago
- cb07788 Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by removing a bogus assertion. by Ted Kremenek · 14 years ago
- af6c314 Another test case for on demand synthesis of ivars. by Fariborz Jahanian · 14 years ago
- ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
- 8262b6a The GNU-runtime ObjC personality function doesn't let us rethrow with URR for by John McCall · 14 years ago
- 4532931 Fix APFloat assertion failure in IdempotentOperationChecker resulting in having by Ted Kremenek · 14 years ago
- fbd4bf1 Teach the PCH reader to load the dependency when encountering a chain metadata record. WIP by Sebastian Redl · 14 years ago
- 0ea4dfd When checking whether to bind an expression to a temporary, don't bind Obj-C message send expressions who call methods that return references. by Anders Carlsson · 14 years ago
- 27de0f2 Fix typeid the same way I fixed sizeof. Sad I had missed it before. by Craig Silverstein · 14 years ago
- bb09d1e Remove unicode quotes characters that somehow made it into a recent commit of mine. by Ted Kremenek · 14 years ago
- cdf3b83 Separate out the initial loading of a PCH so that loading chained PCHs can reuse it. by Sebastian Redl · 14 years ago
- df4ca42 Improved false positive rate for the idempotent operations checker and moved it into the default path-sensitive analysis options. by Tom Care · 14 years ago
- 35dda71 Give the 'self/array-comparison is always true/false' warning a new flag, by Nick Lewycky · 14 years ago
- b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
- 32d0900 Tweak zero-field width in scanf format string diagnostic. by Ted Kremenek · 14 years ago
- 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 14 years ago
- 1cbb50a Make this destructor virtual to placate GCC's warnings. by Chandler Carruth · 14 years ago
- cf4679e Fix up some of the visiting for array types -- we weren't good about by Craig Silverstein · 14 years ago
- 31eb18c Initialize a couple of fields inherited for our private use. by John McCall · 14 years ago
- f9f97a0 When performing template name lookup for a dependent member access by Douglas Gregor · 14 years ago
- 1476ed4 Add a little more data to chained PCHs. WIP by Sebastian Redl · 14 years ago
- a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
- 0c99ec6 Suppress the "typedef requires a name" warning in Microsoft-extensions mode by Douglas Gregor · 14 years ago
- c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
- 34fa294 Make this grossness default to the error it should always be. by Chandler Carruth · 14 years ago
- ddc6ff6 Sema: Fix a bug with #pragma options align=reset, reset against an empty stack by Daniel Dunbar · 14 years ago
- b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
- 1e4c33a Add initial test cases for scanf format string checking. by Ted Kremenek · 14 years ago
- d9c904d Add the main scanf-parsing logic that I meant to include in my previous commit. by Ted Kremenek · 14 years ago
- d20b24c Add missing header file. by Ted Kremenek · 14 years ago
- 826a345 Add most of the boilerplate support for scanf format string checking. This includes by Ted Kremenek · 14 years ago
- bee05c1 Add builtin definition for scanf, including extending the builtin encoding to by Ted Kremenek · 14 years ago
- 6d7cfd7 Fix for PR3800: make sure not to evaluate the expression for a read-write by Eli Friedman · 14 years ago
- 1058253 Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare by Daniel Dunbar · 14 years ago
- 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
- 673431a IRgen: Move blocks runtime interfaces to CodeGenModule. by Daniel Dunbar · 14 years ago
- c76c9e0 Suppress !+Asserts warning. by Daniel Dunbar · 14 years ago
- bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 14 years ago
- 15a3d7d Set "optimization is ON" and supply other optional parameters. This helps codegenerator preserve info in case the symbol is deleted. by Devang Patel · 14 years ago
- 1ce377a Improve test case. Thanks Eli by Douglas Gregor · 14 years ago
- 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 14 years ago
- 4089491 Mark implementation generated methods as artificial. by Devang Patel · 14 years ago
- 1658c39 After some discussion, the ABI list settled on a much more sensible mangling by John McCall · 14 years ago
- 06b7080 When we're performing tentative parsing to determine whether the by Douglas Gregor · 14 years ago
- c57b0ba build/Darwin: Add missing Info.plist template. by Daniel Dunbar · 14 years ago
- 7bad56c build/Darwin: Enable version information for clang executable. by Daniel Dunbar · 14 years ago
- 7c7a793 Reinstate the scalar-cast-to-const-reference improvements, this time by Douglas Gregor · 14 years ago
- 35e12c9 Make the "unused result" warning a warning about run-time behavior, so by Douglas Gregor · 14 years ago
- 928d69f Revert r108431 and r108433 (the cast-to-const-reference fixes), which by Douglas Gregor · 14 years ago
- f801dcf Add test case for PR5290; this bug was fixed with the non-class rvalue by Douglas Gregor · 14 years ago
- db30c0f Revert 108220 and subsequent patch. by Devang Patel · 14 years ago
- 06de037 Spell isPRValue() properly. by Douglas Gregor · 14 years ago
- 5467209 Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue by Douglas Gregor · 14 years ago
- 2497886 CK_BitCast is not an lvalue bitcast any longer by Douglas Gregor · 14 years ago
- 2bb38d0 Driver/Darwin: Resolve deployment target defaulting to be more predictable; by Daniel Dunbar · 14 years ago