- 9d35097 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
- bc3e984 rdar://6060752 - don't warn about trigraphs in bcpl-style comments by Chris Lattner · 16 years ago
- 93afb0d Add test of enumerator types by Douglas Gregor · 16 years ago
- 04de993 merge these testcases into one file. by Chris Lattner · 16 years ago
- 28daa53 implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
- a9053e0 rename recovery-3 to recovery.c by Chris Lattner · 16 years ago
- 0ba0dd6 merge recovery-1 into recovery-3. by Chris Lattner · 16 years ago
- 18914bc merge recovery-2.c into recovery-3.c. by Chris Lattner · 16 years ago
- 4209a39 add expected diag by Chris Lattner · 16 years ago
- 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
- f345acc Testcase for something that already works. Clang agrees with Comeau, by Chris Lattner · 16 years ago
- b0da923 fix rdar://6097892 - gcc incompat: clang rejects __func__, __FUNCTION__, and __PRETTY_FUNCTION__ outside func by Chris Lattner · 16 years ago
- cd08707 Implement rdar://6138816 - [sema] named bitfields cannot have 0 width by Chris Lattner · 16 years ago
- c9467cf In C++, set the type of each of the enumerators in an enumeration to by Douglas Gregor · 16 years ago
- f62e14d add annotation by Chris Lattner · 16 years ago
- 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
- 5abfe2c Add another complex promotion test. by Anders Carlsson · 16 years ago
- 5b1f3f0 Make sure to promote expressions of the form (floating point + complex integer) correctly, to (complex floating point + complex floating point) by Anders Carlsson · 16 years ago
- caaf29a Added a warning when referencing an if's condition variable in the by Douglas Gregor · 16 years ago
- bc76dd0 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
- 2988205 Fix PR clang/3175: CheckAddressOfOperand does not handle references to class vars by Douglas Gregor · 16 years ago
- 4e78fd0 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
- c0febd5 Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
- 391d895 Patch to allow a getter call using property dot-syntax notation. by Fariborz Jahanian · 16 years ago
- 91b51a9 Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
- d82565f Add testcase for commit r60781. by Steve Naroff · 16 years ago
- fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
- b619d95 Fix <rdar://problem/6429113> clang ObjC rewriter: crash rewriting file with Blocks and properties by Steve Naroff · 16 years ago
- 159d248 [static analyzer] Extend VLA size checking to look for undefined sizes. by Ted Kremenek · 16 years ago
- 8322d6a Add zero-sized VLA check test case. by Ted Kremenek · 16 years ago
- 26b58cd Incorporate MissingDealloc_IBOutlet.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
- 63de736 Incorporate MissingDeallc_SEL.m test case into MissingDealloc.m by Ted Kremenek · 16 years ago
- e0bb804 Add test case for <rdar://problem/6380411>. by Ted Kremenek · 16 years ago
- 90b93d6 Fix PR3172: if we see an eof or } at the top level, reject it. by Chris Lattner · 16 years ago
- b79c01e ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
- ba45da8 Changed 'readonly' 'retain/copy' diagnostics into by Fariborz Jahanian · 16 years ago
- 9bfb2a2 Since we do not allow a readonly property to be 'copy'retain', we by Fariborz Jahanian · 16 years ago
- 8599e7a Handle chained/nested property 'getters' (obj.p1.p2.p3). by Steve Naroff · 16 years ago
- e9a0f43 Workaround for PR3173. The fix is correct in the sense that if the enum by Eli Friedman · 16 years ago
- 211316f a minor grammar fix by Chris Lattner · 16 years ago
- 96e05bc Improve VLA diagnostics/sema checking. Fixes PR2361 and PR2352. by Anders Carlsson · 16 years ago
- 1ac2bc4 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
- 601bae3 Simplify test. by Anders Carlsson · 16 years ago
- 196d0ed Improve error reporting of property and setter/getter type mimatches. by Fariborz Jahanian · 16 years ago
- 9f1e572 Add diagnostics for bitfields. by Anders Carlsson · 16 years ago
- 663388f Fix invalid bit-field. by Anders Carlsson · 16 years ago
- 567c8df Patch to diagnose a variety of misuse of property by Fariborz Jahanian · 16 years ago
- 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
- 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
- ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
- a8ef2ec Fixed a test case. Added a test case showing property setter's by Fariborz Jahanian · 16 years ago
- 8daab97 (instance/class) Method type checking between class and its implementation. by Fariborz Jahanian · 16 years ago
- 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
- 8c56515 Fixed <rdar://problem/6213808> clang ObjC rewriter: @finally is not always executed by Steve Naroff · 16 years ago
- 49184b2 Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes PR2963 by Anders Carlsson · 16 years ago
- 9e09f5d Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. by Anders Carlsson · 16 years ago
- de73941 Patch for diagnosing type mismatch between by Fariborz Jahanian · 16 years ago
- 371f258 change getCurFunctionDecl to skip through Block contexts to find by Chris Lattner · 16 years ago
- ae0ee03 instead of forcing blocks on by default, make them default to off, but let by Chris Lattner · 16 years ago
- 06de37b Output better diagnostics for continuation class by Fariborz Jahanian · 16 years ago
- 7f66239 Code cleanup in new handling. by Sebastian Redl · 16 years ago
- a317e90 Add 'expected-warning' to make test case pass. by Ted Kremenek · 16 years ago
- 1e10011 Add another static analyzer test case involving attribute(nonnull). by Ted Kremenek · 16 years ago
- a96ac06 Add another test case for attribute(nonnull) checking. by Ted Kremenek · 16 years ago
- 636a7c4 Fix some diagnostics and enhance test cases. Now tests member new and ambiguous overloads. by Sebastian Redl · 16 years ago
- 4226846 Revise bogus comment I just committed. by Ted Kremenek · 16 years ago
- f117fac Add comment to test case for documentation. by Ted Kremenek · 16 years ago
- b5a57a6 Overload resolution for the operator new function. Member version is still untested. by Sebastian Redl · 16 years ago
- d7ff487 BasicConstraintManager: by Ted Kremenek · 16 years ago
- 73abd13 BasicConstraintManager: by Ted Kremenek · 16 years ago
- 98883e1 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 16 years ago
- fb4ccd7 Make the parser handle ::new and ::delete correctly. by Sebastian Redl · 16 years ago
- 3425c99 int-arith-convert.c makes assumptions about integer sizes, so force a specific architecture by Sebastian Redl · 16 years ago
- 8de8d1d Fix for PR3150: obvious copy-paste bug in ScalarExprEmitter::VisitBinLOr. by Eli Friedman · 16 years ago
- cee63fb Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
- 26236e8 A little more scaffolding for parsing templates: by Douglas Gregor · 16 years ago
- adcac88 Basic support for parsing templates, from Andrew Sutton by Douglas Gregor · 16 years ago
- bec1c9d Objective-C keywords are not always identifiers. Some are also C++ keywords by Douglas Gregor · 16 years ago
- ec0bf05 Fix RUN line by Douglas Gregor · 16 years ago
- b65f242 Test blocks in C++ mode by Douglas Gregor · 16 years ago
- 5bea06a Add test case for __ASSEMBLER__ definition. by Daniel Dunbar · 16 years ago
- 473e70d Make sure __null test runs in both 32- and 64-bit. Thanks Anders by Douglas Gregor · 16 years ago
- a474561 Parse the exception-specification throw(...), a Microsoft extension by Douglas Gregor · 16 years ago
- ac72d40 Add the test for __null by Douglas Gregor · 16 years ago
- 4cfc6fe Fix test. (0 && (a(),1)) is a valid I-C-E according to C99. by Anders Carlsson · 16 years ago
- 4000ea6 Add Sema::isNullPointerConstant which extwarns if necessary. Use it in Sema::CheckConditionalOperands. by Anders Carlsson · 16 years ago
- d3a61d5 Use VerifyIntegerConstantExpression for case values. by Anders Carlsson · 16 years ago
- 34a8347 remove a test case that causes compiler warning. by Zhongxing Xu · 16 years ago
- 27cae9e Add test for initializing array with string literal. by Zhongxing Xu · 16 years ago
- 7ca0976 Add implicit conversions for Objective-C qualified ids, e.g., by Douglas Gregor · 16 years ago
- 0f669f5 Test conversion from apointer to incomplete type to void* in C++ by Douglas Gregor · 16 years ago
- cb7de52 Implement implicit conversions for Objective-C specific types, e.g., by Douglas Gregor · 16 years ago
- b2eb0b4 Another test for property code gen. by Fariborz Jahanian · 16 years ago
- 6010bca Code gen for aggregate-valued properties and a test case. by Fariborz Jahanian · 16 years ago
- b16308f Removed a FIXME. Added a test case for anonymous category. by Fariborz Jahanian · 16 years ago
- 8cf0bb3 Set default property attributes on each property. by Fariborz Jahanian · 16 years ago
- 4d6e8dd Convert incomplete array types before emitting debug info for them, fixes PR3134. by Anders Carlsson · 16 years ago
- a8a6ef8 add missing RUN lines by Nuno Lopes · 16 years ago
- 7ffd0de Fix a minor typo in the handling of the conditional operator for Objective-C interface pointers by Douglas Gregor · 16 years ago
- ad3d691 Handle returning complex types that get coerced. Fixes PR3131 by Anders Carlsson · 16 years ago