- f3c2cb4 Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
- bea3f84 Both operands to && have to be scalars, not just one. by Eli Friedman · 16 years ago
- 89301de Fix <rdar://problem/5924576> clang -fsyntax-only generates "redefinition" errors when parsing AppKit that gcc does not. by Steve Naroff · 16 years ago
- 95cb389 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
- 8933f90 testcase for PR2263, fixed by Nate's r50903 patch. by Chris Lattner · 16 years ago
- 51eaf1b Emit basic block for switch body; fixes PR2307. by Eli Friedman · 16 years ago
- bb822fb Don't try to take the address of a bitfield; fixes PR2310. by Eli Friedman · 16 years ago
- 59a9afb -Implement proper name lookup for namespaces. by Argiris Kirtzidis · 17 years ago
- bf020f3 Added support to generate some atomic operators (add, sub, and, or etc..) by Mon P Wang · 17 years ago
- 1e0fb9b Add attribute "format" support for typedefs of function pointers. by Ted Kremenek · 17 years ago
- c8e51f8 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 17 years ago
- 8bb7dd5 Fix rdar://5921025 a crash on the included testcase. by Chris Lattner · 17 years ago
- dd2e531 The awesome GNU "comma elision extension" works with both the standard by Chris Lattner · 17 years ago
- e9faf27 Begin handling union bitfields. Note, this is just beginning. by Devang Patel · 17 years ago
- 62820d8 Expand the CF retain checker to allow the Create/Get rule to apply to any by Ted Kremenek · 17 years ago
- 2b9422f Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 17 years ago
- 4c47932 Don't report leaks for autoreleased objects. by Ted Kremenek · 17 years ago
- e562829 Fix PR2101 - Codegen crash during bitfield initialization. by Devang Patel · 17 years ago
- e1bd385 Test was accidently nullified in previous check-in. by Fariborz Jahanian · 17 years ago
- b7080ae Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 17 years ago
- ea80086 String comparison cleanups. Added test case. by Ted Kremenek · 17 years ago
- 926abf2 Use EvalSummary to process message expressions, thereby unifying the checker by Ted Kremenek · 17 years ago
- 401c344 Emit dead store warnings for ++ and -- operators. by Ted Kremenek · 17 years ago
- a9c87f2 Fix rdar://5905347 a crash on invalid builtin, due to the by Chris Lattner · 17 years ago
- 0cd29bb Fix a few more bugs in preprocessor expressions w.r.t. ?:. Now I by Chris Lattner · 17 years ago
- 562c130 Minor refactorings/cleanups in CF retain checker and added support for NSMakeCollectable. by Ted Kremenek · 17 years ago
- 75439aa When reporting branch conditions that evaluate to an uninitialized value, by Ted Kremenek · 17 years ago
- d208cd0 fix a bug handling right associative operators that Neil noticed, hopefully by Chris Lattner · 17 years ago
- d7e0285 Fix the rest of PR2279: by Chris Lattner · 17 years ago
- 223ca3f Fix PR2279 part C: shifts don't perform the UACs, thanks to Neil by Chris Lattner · 17 years ago
- 89c3331 fix a nasty bug that Neil identifier in pp-expr parsing (this is PR2279 part D). by Chris Lattner · 17 years ago
- 61f4647 add testcase for pr2050 which is now fixed. by Chris Lattner · 17 years ago
- e557b47 add a testcase by Chris Lattner · 17 years ago
- 289e5ac Another test case for properties in protocols. by Fariborz Jahanian · 17 years ago
- 33973a2 This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 17 years ago
- 92eb715 testcase cleanup by Ted Kremenek · 17 years ago
- 3291b50 Static analysis test case for noreturn on exceptions. by Ted Kremenek · 17 years ago
- 513e30a Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 17 years ago
- 440c955 Added test case for the static analyzer. by Ted Kremenek · 17 years ago
- 62d8edb Added test case to test null dereference checking with lval::ArrayOffset. by Ted Kremenek · 17 years ago
- 1e35f30 Convert CFLF to LF. CRLF was causing this test to fail under Mac OS X. by Ted Kremenek · 17 years ago
- 03e6aaf Parsing of namespaces: by Argiris Kirtzidis · 17 years ago
- c56ff16 remove the 'unused static' diagnostic from codegen. This should be by Chris Lattner · 17 years ago
- ac91ce9 Do a better job at computing dead symbols. by Ted Kremenek · 17 years ago
- 8e1e5bd Added uninitialized-values (path-sensitive) test case as a regression test by Ted Kremenek · 17 years ago
- a46299c Added test case for functionality fix in rdar://problem/5886141 (handle variadic CF Create functions). by Ted Kremenek · 17 years ago
- be62129 Added lval type (and tracking) for StringLiterals. by Ted Kremenek · 17 years ago
- fe1a0b1 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
- 58fe0eb Added null dereference test involving arrays. by Ted Kremenek · 17 years ago
- 8acf335 Allow property in base class to be implemented in a derived class. by Fariborz Jahanian · 17 years ago
- 1792bc4 Added missing expected-warning. by Ted Kremenek · 17 years ago
- 6421648 Added null dereference test case looking for null dereferences involving MemberExpr. by Ted Kremenek · 17 years ago
- 1f02800 More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 17 years ago
- 900e3dc Support for @dynamic AST build. by Fariborz Jahanian · 17 years ago
- 42214c5 Clean up handling of function redeclarations by Douglas Gregor · 17 years ago
- 91f5201 Fix PR2236 Add test Implement feedback from Chris re: PR1998 by Nate Begeman · 17 years ago
- e77e03d Two improvements to initializer parsing: by Chris Lattner · 17 years ago
- af6ed50 OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
- c3cf450 fix __attribute__(format) for struct function pointer fields by Nuno Lopes · 17 years ago
- 15c24fc Added test cases to test for reference count leaks. by Ted Kremenek · 17 years ago
- 0c14933 Add extra test cases to test "escaping" for the reference count checker. by Ted Kremenek · 17 years ago
- 88d0575 Update CF reference count checker test case to illustrate the use of by Ted Kremenek · 17 years ago
- caabaeb Added test case illustrating the use of '&'. by Ted Kremenek · 17 years ago
- 44e8122 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
- b11f44e Updated test cases so that they do not emit warnings for dead stores. by Ted Kremenek · 17 years ago
- dcf0a0c Added test case to dead stores checker. by Ted Kremenek · 17 years ago
- ec93f44 This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
- 1d66155 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
- 514bf2f Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
- ca2ba5f this started failing because a GEP was constant folded, by Chris Lattner · 17 years ago
- b1856db Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
- d4244d4 Changed behavior of how we handle "NULL" summaries: just call by Ted Kremenek · 17 years ago
- ab2fa2a Fixed some logic errors in the CF ref count checker; we now can detect simple by Ted Kremenek · 17 years ago
- b1983ba Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
- da7b5f0 typedef void T; void f(T); by Chris Lattner · 17 years ago
- 97316c0 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
- 3e254fb Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
- 7cdcb25 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 17 years ago
- 309328b MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 17 years ago
- 513a6f7 remove the old non-parallel test system. 'make' in clang/test now runs by Chris Lattner · 17 years ago
- c337fa2 reject 'int test(x, x) int x; {}' by Chris Lattner · 17 years ago
- acb67d9 reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
- 6ab935b Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
- a15e9d2 Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
- 6ee6ab0 Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 17 years ago
- de0908b Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
- 9104f3c Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
- e330ae7 PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
- 35ca50c Fix PR2081 (problems codegen'ing some recursive structures) patch by Chris Lattner · 17 years ago
- 1520816 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
- 67241b4 improve error to be something end users will actually understand :) by Chris Lattner · 17 years ago
- 97bfee8 Added path-sensitive null dereference test case. by Ted Kremenek · 17 years ago
- 5fcb38b 1) Enforce C99 6.7.3p2: "Types other than pointer types derived from by Chris Lattner · 17 years ago
- 19eb97e Fix several bugs in array -> pointer decomposition. by Chris Lattner · 17 years ago
- 67d3c8d Fix PR2017 and silence some bogus errors. by Chris Lattner · 17 years ago
- e57c21a Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 17 years ago
- 108048c Added path-sensitive check for return statements that return the address by Ted Kremenek · 17 years ago
- c72d22d rename Decl::CompatibleAlias -> ObjCCompatibleAlias. by Chris Lattner · 17 years ago
- cfd9f4c Only have the rewriter produce a file when there are no errors. by Steve Naroff · 17 years ago
- 9fcf5b6 Make sure Sema::ActOnClassMessage() correctly diagnoses "super". by Steve Naroff · 17 years ago