- 3eb817e Improve dead stores diagnostics to include the variable name. by Ted Kremenek · 16 years ago
- 5c96c27 Fixed bug in the transfer function for dereferences: the loaded value from EvalLoad should bind to the UnaryOperator*, not its subexpression. by Ted Kremenek · 16 years ago
- 0ac5957 A small testcase; no patch, since it was a bug in a patch I never committed. by Eli Friedman · 16 years ago
- 6b2564c Fix this test so that it's valid; the point is to test for the crash, by Eli Friedman · 16 years ago
- b0c0554 PR2347: Fix crash iterating over VLAs; this started triggering because by Eli Friedman · 16 years ago
- 97c0a39 Fix a couple of bugs found by Neil Booth in the const-ness checking. by Eli Friedman · 16 years ago
- 33701a6 Test from PR2332; bug already fixed by r51311. by Eli Friedman · 16 years ago
- 6e33dd5 Fix the scope of K&R-style argument declarations so that they don't by Eli Friedman · 16 years ago
- a8ea76a Fix test (it was incorrectly succeeding). by Eli Friedman · 16 years ago
- 256f77e Add codegen support for stack address intrinsics. by Eli Friedman · 16 years ago
- e590a84 Fix typo in test. by Eli Friedman · 16 years ago
- 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
- 07fa52a Implement codegen for comma operator for structs. by Eli Friedman · 16 years ago
- d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
- 6223c22 Add some more checking for compound literals. by Eli Friedman · 16 years ago
- d4b32e4 Implement CodeGen for __builtin_memcpy. by Eli Friedman · 16 years ago
- 4be1f47 Make the unused expression warning a bit less aggressive (found in PHP code). by Eli Friedman · 16 years ago
- c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
- 19119a8 Remove illegal test. by Eli Friedman · 16 years ago
- 922696f Fix the emission of expressions like char a[10] = "asdf"; previously, by Eli Friedman · 16 years ago
- d72d16e Add proper type-checking for pointer additiion; before, we were accepting by Eli Friedman · 16 years ago
- 316bb1b Fix support for _Bool bitfields. The issue is that the bitfield width by Eli Friedman · 16 years ago
- 145c083 Patch for PR2334, and a similar ObjC bug. by Eli Friedman · 16 years ago
- d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
- 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
- 5773a6c Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
- 235549c Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
- e701c0a Fix <rdar://problem/5928590> clang -fsyntax-only: "incompatible operand types ('int' and 'void')" on input that 'gcc -fsyntax-only' eats by Steve Naroff · 16 years ago
- a989def testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
- d28a80d Emit basic block for switch body; fixes PR2307. by Eli Friedman · 16 years ago
- c8ba961 Don't try to take the address of a bitfield; fixes PR2310. by Eli Friedman · 16 years ago
- 00bc645 -Implement proper name lookup for namespaces. by Argyrios Kyrtzidis · 16 years ago
- 1ffe281 Added support to generate some atomic operators (add, sub, and, or etc..) by Mon P Wang · 16 years ago
- 72786e0 Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 17 years ago
- 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 17 years ago
- abb5758 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 17 years ago
- 63bc035 The awesome GNU "comma elision extension" works with both the standard by Chris Lattner · 17 years ago
- 5cada6b Begin handling union bitfields. Note, this is just beginning. by Devang Patel · 17 years ago
- 0fcbf8e Expand the CF retain checker to allow the Create/Get rule to apply to any by Ted Kremenek · 17 years ago
- 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 17 years ago
- a22cc2f Don't report leaks for autoreleased objects. by Ted Kremenek · 17 years ago
- d8ecd3c Fix PR2101 - Codegen crash during bitfield initialization. by Devang Patel · 17 years ago
- daa0311 Test was accidently nullified in previous check-in. by Fariborz Jahanian · 17 years ago
- 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 17 years ago
- 70f9d86 String comparison cleanups. Added test case. by Ted Kremenek · 17 years ago
- b309525 Use EvalSummary to process message expressions, thereby unifying the checker by Ted Kremenek · 17 years ago
- a23157e Emit dead store warnings for ++ and -- operators. by Ted Kremenek · 17 years ago
- 95e2c71 Fix rdar://5905347 a crash on invalid builtin, due to the by Chris Lattner · 17 years ago
- 98ed49f Fix a few more bugs in preprocessor expressions w.r.t. ?:. Now I by Chris Lattner · 17 years ago
- 86ad3bc Minor refactorings/cleanups in CF retain checker and added support for NSMakeCollectable. by Ted Kremenek · 17 years ago
- 5c454ab When reporting branch conditions that evaluate to an uninitialized value, by Ted Kremenek · 17 years ago
- 9e66ba6 fix a bug handling right associative operators that Neil noticed, hopefully by Chris Lattner · 17 years ago
- 9189156 Fix the rest of PR2279: by Chris Lattner · 17 years ago
- d5214b2 Fix PR2279 part C: shifts don't perform the UACs, thanks to Neil by Chris Lattner · 17 years ago
- 3b69115 fix a nasty bug that Neil identifier in pp-expr parsing (this is PR2279 part D). by Chris Lattner · 17 years ago
- be34ac6 add testcase for pr2050 which is now fixed. by Chris Lattner · 17 years ago
- d3c3856 add a testcase by Chris Lattner · 17 years ago
- 57c9934 Another test case for properties in protocols. by Fariborz Jahanian · 17 years ago
- aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
- 623f83f testcase cleanup by Ted Kremenek · 17 years ago
- fd3344d Static analysis test case for noreturn on exceptions. by Ted Kremenek · 17 years ago
- 3435096 Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 17 years ago
- e866a7c Added test case for the static analyzer. by Ted Kremenek · 17 years ago
- e2013f5 Added test case to test null dereference checking with lval::ArrayOffset. by Ted Kremenek · 17 years ago
- dd6cec1 Convert CFLF to LF. CRLF was causing this test to fail under Mac OS X. by Ted Kremenek · 17 years ago
- 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
- 5827754 remove the 'unused static' diagnostic from codegen. This should be by Chris Lattner · 17 years ago
- 910e999 Do a better job at computing dead symbols. by Ted Kremenek · 17 years ago
- 43ae4b0 Added uninitialized-values (path-sensitive) test case as a regression test by Ted Kremenek · 17 years ago
- 08e48c1 Added test case for functionality fix in rdar://problem/5886141 (handle variadic CF Create functions). by Ted Kremenek · 17 years ago
- a548846 Added lval type (and tracking) for StringLiterals. by Ted Kremenek · 17 years ago
- 0fe33bc Added "nonlval::LValAsInteger" to represent abstract LVals casted to integers, allowing us to track lvals when they are casted back to pointers. by Ted Kremenek · 17 years ago
- 9704eac Added null dereference test involving arrays. by Ted Kremenek · 17 years ago
- c70bee8 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
- 3603d73 Added missing expected-warning. by Ted Kremenek · 17 years ago
- b9ab690 Added null dereference test case looking for null dereferences involving MemberExpr. by Ted Kremenek · 17 years ago
- 6cdf16d More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 17 years ago
- c35b9e4 Support for @dynamic AST build. by Fariborz Jahanian · 17 years ago
- f009795 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
- 1a1d92a Fix PR2236 Add test Implement feedback from Chris re: PR1998 by Nate Begeman · 17 years ago
- 65bb89c Two improvements to initializer parsing: by Chris Lattner · 17 years ago
- 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
- 59b6d5a fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
- 576b3ad Added test cases to test for reference count leaks. by Ted Kremenek · 17 years ago
- 274d009 Add extra test cases to test "escaping" for the reference count checker. by Ted Kremenek · 17 years ago
- d59d96f Update CF reference count checker test case to illustrate the use of by Ted Kremenek · 17 years ago
- f87821c Added test case illustrating the use of '&'. by Ted Kremenek · 17 years ago
- b29b427 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
- 896436e Updated test cases so that they do not emit warnings for dead stores. by Ted Kremenek · 17 years ago
- 49a2fd2 Added test case to dead stores checker. by Ted Kremenek · 17 years ago
- e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
- 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
- d98d975 Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
- 72e1c6c this started failing because a GEP was constant folded, by Chris Lattner · 17 years ago
- 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
- a0df99f Changed behavior of how we handle "NULL" summaries: just call by Ted Kremenek · 17 years ago
- 940b1d8 Fixed some logic errors in the CF ref count checker; we now can detect simple by Ted Kremenek · 17 years ago
- d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
- def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
- 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago