- 9d294b9 remove the old non-parallel test system. 'make' in clang/test now runs by Chris Lattner · 17 years ago
- 3825c2e reject 'int test(x, x) int x; {}' by Chris Lattner · 17 years ago
- aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
- d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
- a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
- f81557c Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 17 years ago
- 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
- e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
- 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
- fce71b8 Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 17 years ago
- 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 17 years ago
- 26b7661 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
- 2f54af4 Added path-sensitive null dereference test case. by Ted Kremenek · 17 years ago
- 96b77fc 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
- e632774 Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
- fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
- e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
- 02737ed Added path-sensitive check for return statements that return the address by Ted Kremenek · 17 years ago
- 8a93423 rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
- a7b402d Only have the rewriter produce a file when there are no errors. by Steve Naroff · 17 years ago
- 9511096 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago
- 4ba6283 Expanded NSString checking to check for nil for a few more methods. by Ted Kremenek · 17 years ago
- 9b3fdea Add line SourceLocation to NSString checks. by Ted Kremenek · 17 years ago
- 49535ef Fix rewriter tests to work with new output file logic. This changes forces the output to standard out (rather than generate a .cpp file, which is the new default for the rewriter). by Steve Naroff · 17 years ago
- 5f67d13 Added test case for static analysis to warn about passing uninitialized values as arguments (not the receiver) in message expressions. by Ted Kremenek · 17 years ago
- 2daf5b6 Added test case for static analyzer to detect uses of uninitialized pointers as receivers in Objective-C message expressions. by Ted Kremenek · 17 years ago
- 8c1a9a8 allow the format attribute to be specified in function pointer prototypes by Nuno Lopes · 17 years ago
- 8e7dafe Extend QualType::getAddressSpace to do the right thing for array types, and in by Nate Begeman · 17 years ago
- 4cc34cb The newest version of valgrind, 3.3.0, no longer appends PIDs to log filenames by Sam Bishop · 17 years ago
- 5fb5c6a Changed merge operation for uninitialized values analysis to "intersect" (previous union). by Ted Kremenek · 17 years ago
- c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
- 21fbe0d fix this test. by Chris Lattner · 17 years ago
- 49d8dc5 Only invoke the preprocessor; it's the only thing being tested. Also, check by Sam Bishop · 17 years ago
- d8b28d7 Use the -E option when invoking clang. Only the preprocessor is by Sam Bishop · 17 years ago
- 1e2db03 Add ability to run clang tests under valgrind. Patch by Sam Bishop. by Gabor Greif · 17 years ago
- 5267d7c reduce chattyness of makefiles by Gabor Greif · 17 years ago
- 65307dc scan testdirs only once, patch by Mike Stump, thanks! by Gabor Greif · 17 years ago
- 0fdf06e Convert tabs to spaces. by Ted Kremenek · 17 years ago
- 17feadf add 'clean' targets, make sure that 'make test' works after 'make clean' by Gabor Greif · 17 years ago
- cf20b48 let the %t magic happen, thanks Chris! by Gabor Greif · 17 years ago
- b4992db finishing touches: teminate the dots with a newline by Gabor Greif · 17 years ago
- 119c65d Implemented verbose mode. by Gabor Greif · 17 years ago
- e1d2647 Simplify further by creating *.testresults files by Gabor Greif · 17 years ago
- 53c5567 Get rid of the creation of secondary makefile "Makefile.tests". by Gabor Greif · 17 years ago
- 947a8b5 More review feedback implemented: by Gabor Greif · 17 years ago
- 0f23303 Actually expand the %t1 patterns (in RUN: lines) to a unique by Gabor Greif · 17 years ago
- 5ca1b5a Second round of review feedback. by Gabor Greif · 17 years ago
- 8fb64e8 implement a bit of feedback: print dots by Gabor Greif · 17 years ago
- 021e970 First draft of a parallelized test methodology. Improvements soon. by Gabor Greif · 17 years ago
- c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 17 years ago
- 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 17 years ago
- 5518e7c Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 17 years ago
- b1f4080 Since the rewriter now outputs C++, it no longer makes sense to pipe the output to clang. by Steve Naroff · 17 years ago
- 15bd799 rewriter tests are darwin specific, don't run them on other platforms. by Chris Lattner · 17 years ago
- 6b88450 implement simple support for arbitrary token lookahead. Change the by Chris Lattner · 17 years ago
- b6789ca Add new test by Nate Begeman · 17 years ago
- aa8f976 Patch by Nuno Lopes: by Ted Kremenek · 17 years ago
- 2a625bc remove two obsolete tests, not sure why my previous commit didn't commit the removal. by Chris Lattner · 17 years ago
- 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
- 7b937ae The operand to the visibility attribute is required to be a quoted string, not a bare identifier. by Chris Lattner · 17 years ago
- 69153db move deprecated -> attributes.c by Chris Lattner · 17 years ago
- 15f3622 The attribute nothrow maps to llvm attribute nounwind. Fix testcase. by Gabor Greif · 17 years ago
- 7a03452 Chris added this testcase with r47837. The mail only shows one todo-warning but I see 3. Strangeness. Correcting lines 16 and 24. by Gabor Greif · 17 years ago
- f89e88d fix codegen support for functions that are nothrow and noreturn. by Chris Lattner · 17 years ago
- ddee423 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
- bcb2b61 Fix http://llvm.org/bugs/show_bug.cgi?id=2103. by Steve Naroff · 17 years ago
- da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 17 years ago
- fce90e3 testcase for attr deprecated, by Nuno Lopes. by Chris Lattner · 17 years ago
- 8137335 Implement codegen for the following static var init. by Lauro Ramos Venancio · 17 years ago
- 7695f70 Fix a bug in ConvertAsmString function. by Lauro Ramos Venancio · 17 years ago
- a5694b8 Convert x86 target specific inline asm constraints to LLVM. by Lauro Ramos Venancio · 17 years ago
- 0184cc7 Fix PR2086. by Lauro Ramos Venancio · 17 years ago
- 146ccd4 Fix PR2090, a typo in digraph processing. by Chris Lattner · 17 years ago
- 86e07b6 add a test case by Nate Begeman · 17 years ago
- cca196b Some const initializer tests for stuff I just committed. by Eli Friedman · 17 years ago
- a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 17 years ago
- 7380466 add some semantic checks for address spaces. by Chris Lattner · 17 years ago
- 145cd89 Simplify aggregate initilizer implementation. Use the CodeGenModule::EmitConstantExpr method when by Lauro Ramos Venancio · 17 years ago
- 49581f4 fix the second half of PR2041: __restrict is ok in c90 mode, even if by Chris Lattner · 17 years ago
- 95050fa A global without initializer must be emitted as weak. Fix Olden/bh test. by Lauro Ramos Venancio · 17 years ago
- 305762c Implement multi-dimension array initalizer. Fix McCat/08-main test. by Lauro Ramos Venancio · 17 years ago
- a0992b6 by Steve Naroff · 17 years ago
- 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
- d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 17 years ago
- 19a1d7c implement codegen support for aggregates casted to void. by Chris Lattner · 17 years ago
- fea90b8 Implement extern block var. by Lauro Ramos Venancio · 17 years ago
- 5a1b0c4 Add more tests by Anders Carlsson · 17 years ago
- e9ba323 Fix CheckEndOfDirective to diagnose lines that contain macros that expand to by Chris Lattner · 17 years ago
- 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 17 years ago
- 3e5849e Fix PR2041: restrict is not a keyword in c90. by Chris Lattner · 17 years ago
- f963339 Get rid of outdated code that masks type errors. Fixes PR2036. by Eli Friedman · 17 years ago
- 708eed5 Nevermind, these tests work... I messed up my testing. by Eli Friedman · 17 years ago
- d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 17 years ago
- e39bfd0 by Steve Naroff · 17 years ago
- 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 17 years ago
- bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 17 years ago
- 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 17 years ago
- 9532414 by Steve Naroff · 17 years ago
- 88cf226 Get rid of bogus warnings when the second argument in va_start is either an implicit cast expr or a paren expr. by Anders Carlsson · 17 years ago
- 3a15485 by Steve Naroff · 17 years ago