- e90876d Remove pointless backslash by Douglas Gregor · 16 years ago
- c25bf6d Downgrade the "excess elements in initializer" errors to warnings *in by Douglas Gregor · 16 years ago
- 6311876 x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test. by Daniel Dunbar · 16 years ago
- fd3f8da Fix diagnostics bugs when computing ranges for the retain/release checker. by Ted Kremenek · 16 years ago
- 1fc4791 rip out __builtin_overload by Chris Lattner · 16 years ago
- 181616e HTMLDiagnostics: Always display diagnostics *below* the line in question. by Ted Kremenek · 16 years ago
- 7219884 x86_64 ABI: "is passed in regs" computation for va_arg was broken for by Daniel Dunbar · 16 years ago
- 6b3cca6 Return true on errors, return true on errors, return true on errors by Douglas Gregor · 16 years ago
- 2126bef retain/release checker: We now emit fancy diagnostics telling users about the by Ted Kremenek · 16 years ago
- aa57e86 Downgrade complaints about calling unavailable functions to a warning by Douglas Gregor · 16 years ago
- b8ca6ff Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 16 years ago
- 5b601ff Codegen for int (^bp)(int) = 0; by Mike Stump · 16 years ago
- e892c04 __attribute__((aligned)) was being ignored! by Daniel Dunbar · 16 years ago
- c61a800 Add Type::isSpecificBuiltinType as a shortcut. by Daniel Dunbar · 16 years ago
- f8eb23b Simplify. by Daniel Dunbar · 16 years ago
- f6d4472 final string diagnostic issue (that I know about): by Chris Lattner · 16 years ago
- be93e79 Next step toward making string diagnostics correct: handle by Chris Lattner · 16 years ago
- 29e840e update comment. by Chris Lattner · 16 years ago
- 58dd95b retain/release checker: Distinguish in the function summaries between by Ted Kremenek · 16 years ago
- 81df846 Fix some issues handling sub-token locations that come from macro expansions. by Chris Lattner · 16 years ago
- 31804e1 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 16 years ago
- 459da5d tidy up by Chris Lattner · 16 years ago
- 4ec7a05 only get the spelling of a token to get its length if it needs cleaning. by Chris Lattner · 16 years ago
- 30183b0 use the full spelling of a string literal token so that trigraphs by Chris Lattner · 16 years ago
- 2062bb2 Make warn-weak-field.m test pass again. by Fariborz Jahanian · 16 years ago
- 80ff83c Cleanup objc's gc attributes code no longer needed. by Fariborz Jahanian · 16 years ago
- f17cb36 Start improving diagnostics that relate to subcharacters of string literals. by Chris Lattner · 16 years ago
- 6c0f406 Update Parser::ParseTypeName to return a TypeResult, which also tells by Douglas Gregor · 16 years ago
- 2f9faf4 Revise comment. Comparing pointer values in 'Range' wasn't the performance issue I thought it was, but it is still worth ordering Range objects by their APSInt values. by Ted Kremenek · 16 years ago
- c383473 Add an unavailable __tg_promote function to attract incorrect uses of type-generic macros, rom Howard Hinnant. by Douglas Gregor · 16 years ago
- 1f9e60f nothing says "ted was here" like a random url dropped in a header :) by Chris Lattner · 16 years ago
- 88a25f8 Allow "overloadable" functions in C to be declared as variadic without by Douglas Gregor · 16 years ago
- 2c49963 teach child iterators to walk into the child string of an ObjCStringLiteral, by Chris Lattner · 16 years ago
- 3c24ef1 fix the ownership issues and location tracking in Sema::ParseObjCStringLiteral. by Chris Lattner · 16 years ago
- aa49119 privatize all of the string literal memory allocation/creation by Chris Lattner · 16 years ago
- 7f49ea2 Don't allow calls to functions marked "unavailable". There's more work by Douglas Gregor · 16 years ago
- 4ae4a91 add some comments describing what is happening here. by Chris Lattner · 16 years ago
- ecc8da3 simplify the code used to compute the type of an objc string. This makes by Chris Lattner · 16 years ago
- 81f5be2 rename CheckBuiltinCFStringArgument -> CheckObjCString by Chris Lattner · 16 years ago
- ca7e5cb simplify some code. by Chris Lattner · 16 years ago
- c314474 change the StringLiteral AST node to track all of the SourceLocations of by Chris Lattner · 16 years ago
- ae67fa0 Fix performance bug in RangeConstraintManager (that I introduced): by Ted Kremenek · 16 years ago
- af23809 Representation of objc gc's attribute using ExtQualType. by Fariborz Jahanian · 16 years ago
- 9c039b5 fix rdar://6597252: two exactly identical pointer types are always by Chris Lattner · 16 years ago
- e289726 rename some variables, no functionality change. by Chris Lattner · 16 years ago
- c26c469 Hooked up the necessary machinery to allow the retain/release checker reference by Ted Kremenek · 16 years ago
- 4fc0d49 x86_64 ABI: Two bug fixes. 1. Return of _Complex long double used wrong type. by Daniel Dunbar · 16 years ago
- 0dd6501 retain/release checker: Record the summary used to generate a given node. by Ted Kremenek · 16 years ago
- 168b20c isICE was evaluating ?: incorrectly with missing-gcc-LHS extension. by Daniel Dunbar · 16 years ago
- 7458f4a Convert isIntegerConstantExpr to use ASTContext::MakeIntValue. by Daniel Dunbar · 16 years ago
- 364e9fc stop searching GCC install directories for standard C headers (but by Chris Lattner · 16 years ago
- 51b1101 Add panic function. by Ted Kremenek · 16 years ago
- 459207f Avoid getNameAsCString when the decl doesn't have a name. by Mike Stump · 16 years ago
- 8360a9c Rename UnaryTypeTraitExpr::Evaluate to EvaluateTrait to not collide by Daniel Dunbar · 16 years ago
- 684989f gcc spells it "warn_unused_result" (already supported) not "warnunusedresult" by Chris Lattner · 16 years ago
- a08b6c7 Implement basic parsing and semantic analysis for explicit by Douglas Gregor · 16 years ago
- 3ccaa82 Attribute 'iboutlet' can be applied to Objective-C property declarations. by Ted Kremenek · 16 years ago
- 96d1f1b Eek! getDeclAlign sometimes returned alignment in bits. by Daniel Dunbar · 16 years ago
- e6f7d33 initial reimplement tgmath.h, written by Howard Hinnant! by Chris Lattner · 16 years ago
- 1e124fe Simplified ExtQualType per Chris's feedback. by Fariborz Jahanian · 16 years ago
- d4618b1 Remove one more redundant dyn_cast. by Argiris Kirtzidis · 16 years ago
- bc1f2a6 Move DeclContext::getParent and getLexicalParent in-line. by Argiris Kirtzidis · 16 years ago
- a7ff77e Currently all DeclContexts are Decls as well; use cast<Decl> instead of dyn_cast. by Argiris Kirtzidis · 16 years ago
- b50464f Remove some redundant Decl -> Decl castings. by Argiris Kirtzidis · 16 years ago
- 6c56368 Now that ObjC decls have DeclContexts too, remove an ugly hack from IdentifierResolver. by Argiris Kirtzidis · 16 years ago
- 96e79bf All Decls have a DeclContext now, hooray! Fans of consistency rejoice. by Argiris Kirtzidis · 16 years ago
- dae66ed Added support for objc's gc attribute in ExtQualType. by Fariborz Jahanian · 16 years ago
- 74c4249 Revised RangeConstraintManager based on several discussions with Ben Laurie and by Ted Kremenek · 16 years ago
- f69d19e Change EmitConstantExpr to allow failure. by Daniel Dunbar · 16 years ago
- 6a3b16e 80-cols. by Daniel Dunbar · 16 years ago
- b60352a Renamed ASQualType to ExtQualType to reflect its more by Fariborz Jahanian · 16 years ago
- 9086f59 Add '_assert' to list of known panic functions. by Ted Kremenek · 16 years ago
- 09aabe6 Handle fatal errors. by Ben Laurie · 16 years ago
- 11c46e2 Be sure to initialize Name. by Mike Stump · 16 years ago
- 9319ed4 Fixup spacing a little. by Mike Stump · 16 years ago
- fe3ccfa Remove the error about redefining library functions. It's causing too by Douglas Gregor · 16 years ago
- 37f9ad2 As an experimental hack, emit "instantiated from" information in by Chris Lattner · 16 years ago
- f1790ca add an accessor. by Chris Lattner · 16 years ago
- 57e5f7e emit: by Chris Lattner · 16 years ago
- bf9a0e3 add an accessor. by Chris Lattner · 16 years ago
- 1e39864 Spell __always_inline__ correctly. by Daniel Dunbar · 16 years ago
- 92e8864 x86_64 ABI: Fix assert on return of _Complex long double. by Daniel Dunbar · 16 years ago
- 3b29a18 sink a call to getInstantiationLoc to eliminate an assertion. by Chris Lattner · 16 years ago
- 34e6c26 break down EmitCaretDiagnostic to use more primitive calls. by Chris Lattner · 16 years ago
- 114efbc add some files to fix the cmake build, patch by Piotr Rak! by Chris Lattner · 16 years ago
- c1303fb split caret diagnostic printing out into its own function. by Chris Lattner · 16 years ago
- f0b2856 simplify some code. by Chris Lattner · 16 years ago
- 4a52611 remove "; candidates are/is:" from various ambiguity diagnostics. by Chris Lattner · 16 years ago
- 724231a fix a minor bug with my previous patch by Chris Lattner · 16 years ago
- 44b3983 fix notes so that they are always filtered with the same logic by Chris Lattner · 16 years ago
- e357b11 If a source range comes through a function-like macro expansion, by Chris Lattner · 16 years ago
- 4d6b102 Static variables and functions won't collide with standard library by Douglas Gregor · 16 years ago
- 8e24812 Add SSSE3 header by Anders Carlsson · 16 years ago
- d6fb35c x86_64 ABI: Implement classification for bit-fields. by Daniel Dunbar · 16 years ago
- 0c48a05 remove dead macros by Chris Lattner · 16 years ago
- c4a6827 explicitly cast integers to double. This a) silences any by Chris Lattner · 16 years ago
- b1aa202 asin support. No we don't care about complex int :) by Chris Lattner · 16 years ago
- 9f1e747 hand macro expand this to make "candidate" set printing more useful. However, by Chris Lattner · 16 years ago
- 34c8b06 add support for integers to tgmath functions. I apparently need to provide by Chris Lattner · 16 years ago
- 5fa4630 start converting over to attr(overloadable). Unfortunately, this by Chris Lattner · 16 years ago