- 394d33f Add ObjCPropertyDecl::isReadOnly. by Daniel Dunbar · 16 years ago
- a56f746 In incompatible pointer-typed ?: expressions, add implicit conversion by Daniel Dunbar · 16 years ago
- eb4b705 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
- c3f0764 Fix for PR2720; be a little bit more permissive in initializers for by Eli Friedman · 16 years ago
- 1e465df Add test case for function-pointer-cast-of-global as constant expression. by Daniel Dunbar · 16 years ago
- 1fe379f Objective-C foreach selector elements must be lvalues. by Anders Carlsson · 16 years ago
- 6e14a8f Fix silly bug in objc_gc attribute parsing and add test case by Anders Carlsson · 16 years ago
- 4f3cc81 Add carbon.cpp and cocoa.mm tests by Anders Carlsson · 16 years ago
- b88d45e treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
- 413ad8b Handle Objective-C++ tests. by Anders Carlsson · 16 years ago
- ef048ef Reserved C++ words are valid selectors in Objective-C++ by Anders Carlsson · 16 years ago
- 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
- 2fba121 Add a null pointer test in the type-convert-construct.cpp tests. by Argyrios Kyrtzidis · 16 years ago
- e8904e9 Fix a FIXME by not creating an invalid AST on erroneous input. Also by Chris Lattner · 16 years ago
- 4bd8217 Move the rest of the Sema C++ tests into the SemaCXX test directory. by Argyrios Kyrtzidis · 16 years ago
- 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
- dfb99a9 make test fails if llvm is checked out to llvm-svn of if there is a dash somewhere else in the path. fix that. by Nico Weber · 16 years ago
- c5eb731 Initial sema support for C++ static initializers. by Anders Carlsson · 16 years ago
- 2c15647 add a simple check to warn people who type "=+" when they probably meant "+=". by Chris Lattner · 16 years ago
- 5323e23 Use full path to count script, and don't treat files with missing RUN by Daniel Dunbar · 16 years ago
- 9562726 Missed a test case writing a .ll file. by Daniel Dunbar · 16 years ago
- 4565938 Reorder the PATH used during testing so $(ToolDir) and the LLVM by Daniel Dunbar · 16 years ago
- 2d6ca8d Update a number of CodeGen tests to not create .ll files in the test by Daniel Dunbar · 16 years ago
- 6bfd621 Update test/Makefile to allow testing when using a separate obj by Daniel Dunbar · 16 years ago
- efbe85c Fix a regression from my fix to PR2631. Fixes PR2692. by Eli Friedman · 16 years ago
- 0976278 Fix a minor crash-on-invalid. by Eli Friedman · 16 years ago
- 58d5ebb Fix subtle bug introduced in r54852. by Daniel Dunbar · 16 years ago
- 50ff6f3 Fix test failure on Linux. by Eli Friedman · 16 years ago
- 9b20376 Fix some spam from make I accidentally introduced. by Eli Friedman · 16 years ago
- 0adb3c9 Get rid of the bogus -depth +0 argument; I really have no clue what the by Eli Friedman · 16 years ago
- c7089f1 Fix crasher in RewriteObjC::RewriteObjCSynchronizedStmt(). Can't depend on the source locations of the sync expression (since it may have been rewritten. by Steve Naroff · 16 years ago
- d5bac57 add testcase we already handle. by Chris Lattner · 16 years ago
- 4f3278f proper grammar n stuph by Chris Lattner · 16 years ago
- 43477ca warn when someone tries to make an array of ObjC interfaces instead of array by Chris Lattner · 16 years ago
- 396f0bf Support initialization of incomplete array with zero size (as extension). by Daniel Dunbar · 16 years ago
- 786e7a1 fix bogus run line. by Chris Lattner · 16 years ago
- 8b6b0f6 Change test/Makefile to automatically test all subdirs. by Daniel Dunbar · 16 years ago
- a9dbb61 Fix test case RUN: line (thanks Argiris) by Daniel Dunbar · 16 years ago
- 2ff9b4c Type::isIntegerType() returns true for types between Bool and LongLong. by Argyrios Kyrtzidis · 16 years ago
- 5e8840c Move the C++ Sema tests into a separate SemaCXX directory. by Argyrios Kyrtzidis · 16 years ago
- b348b81 C++ casts, (static_cast. dynamic_cast, etc.) can have postfix-expression pieces. by Argyrios Kyrtzidis · 16 years ago
- dd463b8 Enhance null-dereference checker test. by Ted Kremenek · 16 years ago
- 3998d3f make sure the size of constant arrays is respected by Nuno Lopes · 16 years ago
- 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
- 595c7ab Added test case. by Ted Kremenek · 16 years ago
- 709c00c Add test case for -fexceptions by Daniel Dunbar · 16 years ago
- 6135352 InitListChecker::CheckListElementTypes(): Check for function types and issue an appropriate diagnostic. by Steve Naroff · 16 years ago
- f855e6f Sema::CheckForFileScopedRedefinitions(): Make sure tentative decls of incomplete array types are completed (and diagnosed properly). by Steve Naroff · 16 years ago
- 9ca8bb0 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
- d880363 wrap some long diagnostics, make 'initializer is not a constant' diagnostic by Chris Lattner · 16 years ago
- 1bb516c Make sure to count the struct elements correctly; here, we want the by Eli Friedman · 16 years ago
- c34bcde Fix for PR2631; make va_arg work correctly on x86-64. by Eli Friedman · 16 years ago
- 8389eab Fix PR2400 by more graceful handling of invalid decls. Don't try to layout by Chris Lattner · 16 years ago
- 64c438a Implement support for the 'wchar_t' C++ type. by Argyrios Kyrtzidis · 16 years ago
- 907747b Fix Sema::MergeVarDecl() to better handle type compatibility. The previous code was trying to handle arrays specially (which didn't work for pointers to array). Removed local helper function areEquivalentArrayTypes(), replacing it's use with the more general ASTContext::typesAreCompatible() predicate. by Steve Naroff · 16 years ago
- ff9eb1f Fix issues with C "tentative" definitions. by Steve Naroff · 16 years ago
- 45e52e1 Add test for nested enum redefinition. - <rdar://problem/6093889> by Daniel Dunbar · 16 years ago
- efe88f5 Enhanced test case. by Ted Kremenek · 16 years ago
- c4aa96f Replace old bitfield test. by Daniel Dunbar · 16 years ago
- 8239713 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
- 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
- 8c6f57c Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
- a735ad8 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
- 3c827a7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
- db82568 fix crash when printing diagnostics with tokens that span through more than one line by Nuno Lopes · 16 years ago
- 894bbab Add test case for PR2001. by Daniel Dunbar · 16 years ago
- da8bf14 Fix const-init test case by Daniel Dunbar · 16 years ago
- 4fef81d Fix rdar://6124613 a crash on invalid code. by Chris Lattner · 16 years ago
- 820b033 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
- 4489fe1 Add EXTWARN Diagnostic class. by Daniel Dunbar · 16 years ago
- 1e76ce6 Fix several issues in checking of address-of expressions. by Daniel Dunbar · 16 years ago
- 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
- c63a1f2 by Chris Lattner · 16 years ago
- 6bfed7e Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
- 3068ae0 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 16 years ago
- 22bda88 Enhanced path-sensitive return-of-stack-address check to print out the name of the variable whose address was returned. by Ted Kremenek · 16 years ago
- 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
- f9eede1 Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
- 9986eab Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
- 58a7a26 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
- fde9fe7 Remove bashism; sh != bash on Ubuntu. by Eli Friedman · 16 years ago
- 611b2ec fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
- be89909 testcase for PR2416, which we already handle correctly. by Chris Lattner · 16 years ago
- eacc392 simplify some code. by Chris Lattner · 16 years ago
- e281c86 remove duplicate error message. by Chris Lattner · 16 years ago
- 666871a remove objc prefixes from these tests. by Chris Lattner · 16 years ago
- 6ac6ddc move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
- 62f5f7f fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
- bce6135 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
- 02a6514 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 16 years ago
- d67cd9e fix diagnostics. by Chris Lattner · 16 years ago
- 1e9660e Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
- 834a72a Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
- 67d33d8 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 16 years ago
- 0d834b1 Fix long double test case by Daniel Dunbar · 16 years ago
- 53fcaa9 In c99 mode, comma does do function/array promotion even though by Chris Lattner · 16 years ago
- f19f911 Remove '.' in expected warning by Ted Kremenek · 16 years ago
- 080b332 Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 16 years ago
- 3872b5c gcc requires a semicolon at the end of an interface, unlike its extension for structs. by Chris Lattner · 16 years ago
- 7c778f1 Cleaunup Sema::ActOnClassMessage(). This commit: by Steve Naroff · 16 years ago