- 7aa5475 First wave of changes to support "blocks" (an extension to C). by Steve Naroff · 16 years ago
- 43f2b70 Update test case (we were missing a warning here) by Daniel Dunbar · 16 years ago
- db3b449 Add ObjCPropertyDecl::isReadOnly. by Daniel Dunbar · 16 years ago
- cd23bb2 In incompatible pointer-typed ?: expressions, add implicit conversion by Daniel Dunbar · 16 years ago
- 769e730 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 16 years ago
- 1fad3c6 Fix for PR2720; be a little bit more permissive in initializers for by Eli Friedman · 16 years ago
- 398a815 Add test case for function-pointer-cast-of-global as constant expression. by Daniel Dunbar · 16 years ago
- 8d0bcb0 Objective-C foreach selector elements must be lvalues. by Anders Carlsson · 16 years ago
- e0f00b3 Fix silly bug in objc_gc attribute parsing and add test case by Anders Carlsson · 16 years ago
- d7601d3 Add carbon.cpp and cocoa.mm tests by Anders Carlsson · 16 years ago
- ed6c214 treat bool literals as constatnt expressions. by Anders Carlsson · 16 years ago
- af1864b Handle Objective-C++ tests. by Anders Carlsson · 16 years ago
- 28075fa Reserved C++ words are valid selectors in Objective-C++ by Anders Carlsson · 16 years ago
- 750eb97 Add CodeGen support for CXXZeroInitValueExpr. by Argiris Kirtzidis · 16 years ago
- 868dcdb Add a null pointer test in the type-convert-construct.cpp tests. by Argiris Kirtzidis · 16 years ago
- b576933 Fix a FIXME by not creating an invalid AST on erroneous input. Also by Chris Lattner · 16 years ago
- 1d00c2c Move the rest of the Sema C++ tests into the SemaCXX test directory. by Argiris Kirtzidis · 16 years ago
- 7a1e741 Add support for C++'s "type-specifier ( expression-list )" expression: by Argiris Kirtzidis · 16 years ago
- cdfcc0b 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
- ea7140a Initial sema support for C++ static initializers. by Anders Carlsson · 16 years ago
- 34c8508 add a simple check to warn people who type "=+" when they probably meant "+=". by Chris Lattner · 16 years ago
- 0541b43 Use full path to count script, and don't treat files with missing RUN by Daniel Dunbar · 16 years ago
- bac9635 Missed a test case writing a .ll file. by Daniel Dunbar · 16 years ago
- 84cccd0 Reorder the PATH used during testing so $(ToolDir) and the LLVM by Daniel Dunbar · 16 years ago
- 8e019fd Update a number of CodeGen tests to not create .ll files in the test by Daniel Dunbar · 16 years ago
- 8ff06f3 Update test/Makefile to allow testing when using a separate obj by Daniel Dunbar · 16 years ago
- 8754e5b Fix a regression from my fix to PR2631. Fixes PR2692. by Eli Friedman · 16 years ago
- a1b6d80 Fix a minor crash-on-invalid. by Eli Friedman · 16 years ago
- 5ad49de Fix subtle bug introduced in r54852. by Daniel Dunbar · 16 years ago
- 0067dad Fix test failure on Linux. by Eli Friedman · 16 years ago
- 2e55ea8 Fix some spam from make I accidentally introduced. by Eli Friedman · 16 years ago
- 5d0dc40 Get rid of the bogus -depth +0 argument; I really have no clue what the by Eli Friedman · 16 years ago
- 027cd0b 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
- a5ca2cf add testcase we already handle. by Chris Lattner · 16 years ago
- 823f519 proper grammar n stuph by Chris Lattner · 16 years ago
- 31fccaf warn when someone tries to make an array of ObjC interfaces instead of array by Chris Lattner · 16 years ago
- 604dacf Support initialization of incomplete array with zero size (as extension). by Daniel Dunbar · 16 years ago
- 11d1959 fix bogus run line. by Chris Lattner · 16 years ago
- 8e547ac Change test/Makefile to automatically test all subdirs. by Daniel Dunbar · 16 years ago
- b15efed Fix test case RUN: line (thanks Argiris) by Daniel Dunbar · 16 years ago
- 85bd81e Type::isIntegerType() returns true for types between Bool and LongLong. by Argiris Kirtzidis · 16 years ago
- 541f6bb Move the C++ Sema tests into a separate SemaCXX directory. by Argiris Kirtzidis · 16 years ago
- 4963ee4 C++ casts, (static_cast. dynamic_cast, etc.) can have postfix-expression pieces. by Argiris Kirtzidis · 16 years ago
- f3d8263 Enhance null-dereference checker test. by Ted Kremenek · 16 years ago
- 917ed41 make sure the size of constant arrays is respected by Nuno Lopes · 16 years ago
- 31fe9c3 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
- 41508c1 Added test case. by Ted Kremenek · 16 years ago
- e9bcc5c Add test case for -fexceptions by Daniel Dunbar · 16 years ago
- ff5b3a8 InitListChecker::CheckListElementTypes(): Check for function types and issue an appropriate diagnostic. by Steve Naroff · 16 years ago
- 4b6bd3c Sema::CheckForFileScopedRedefinitions(): Make sure tentative decls of incomplete array types are completed (and diagnosed properly). by Steve Naroff · 16 years ago
- 8324cb6 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
- 1543ae9 wrap some long diagnostics, make 'initializer is not a constant' diagnostic by Chris Lattner · 16 years ago
- 171a463 Make sure to count the struct elements correctly; here, we want the by Eli Friedman · 16 years ago
- dd2b9af Fix for PR2631; make va_arg work correctly on x86-64. by Eli Friedman · 16 years ago
- fd79969 Fix PR2400 by more graceful handling of invalid decls. Don't try to layout by Chris Lattner · 16 years ago
- 1ed03e7 Implement support for the 'wchar_t' C++ type. by Argiris Kirtzidis · 16 years ago
- 1250817 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
- b5e7815 Fix issues with C "tentative" definitions. by Steve Naroff · 16 years ago
- 7f0def4 Add test for nested enum redefinition. - <rdar://problem/6093889> by Daniel Dunbar · 16 years ago
- 8458a31 Enhanced test case. by Ted Kremenek · 16 years ago
- c913fcb Replace old bitfield test. by Daniel Dunbar · 16 years ago
- de81331 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
- 833b03b Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
- 5d7d038 Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
- ced8914 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
- a31eaf7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
- d0e162c fix crash when printing diagnostics with tokens that span through more than one line by Nuno Lopes · 16 years ago
- 7b0f814 Add test case for PR2001. by Daniel Dunbar · 16 years ago
- 40ca814 Fix const-init test case by Daniel Dunbar · 16 years ago
- f9311a9 Fix rdar://6124613 a crash on invalid code. by Chris Lattner · 16 years ago
- 0aac9f6 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
- 103baef Add EXTWARN Diagnostic class. by Daniel Dunbar · 16 years ago
- b45f75c Fix several issues in checking of address-of expressions. by Daniel Dunbar · 16 years ago
- 879788d Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
- a1923f6 by Chris Lattner · 16 years ago
- dd2e9ca Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
- 8716a01 Support __attribute__(({con,de}structor)) in Parse & Sema by Daniel Dunbar · 16 years ago
- 0303bab 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
- 69cc2f9 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
- 5c8963d Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
- 2188c53 Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
- f7bacd3 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
- eea6a1c Remove bashism; sh != bash on Ubuntu. by Eli Friedman · 16 years ago
- 200964f fix some problems handling stmtexprs with labels (PR2374), and by Chris Lattner · 16 years ago
- 987a87b testcase for PR2416, which we already handle correctly. by Chris Lattner · 16 years ago
- 17d50a9 simplify some code. by Chris Lattner · 16 years ago
- fc513a6 remove duplicate error message. by Chris Lattner · 16 years ago
- 5ad2497 remove objc prefixes from these tests. by Chris Lattner · 16 years ago
- 1c2732e move all objc sema tests into a new SemaObjC directory. Next step is to by Chris Lattner · 16 years ago
- 4a68fe0 fix several problems with the protocol qualified id handling where id was implicit. by Chris Lattner · 16 years ago
- b99d749 improve handling of the horrible GCC objc extension that treats "<foo>" by Chris Lattner · 16 years ago
- bd69502 GCC supports the complex conjugate operator (an extension) on complex int by Chris Lattner · 16 years ago
- 6ff24a4 fix diagnostics. by Chris Lattner · 16 years ago
- dad8551 Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
- e02e440 Fix rdar://6095136, various crashes with incomplete enum types. by Chris Lattner · 16 years ago
- 2aa6882 c89 does not perform array -> pointer promotion unless the array is an lvalue. This by Chris Lattner · 16 years ago
- c59df05 Fix long double test case by Daniel Dunbar · 16 years ago
- 03c430f In c99 mode, comma does do function/array promotion even though by Chris Lattner · 16 years ago
- 7d2217d Remove '.' in expected warning by Ted Kremenek · 16 years ago
- 4405b2e Comma does not perform unary promotions, rdar://6095180 by Chris Lattner · 16 years ago