1. 245f92a This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  2. 2d79d0f Support case statement ranges. by Devang Patel · 17 years ago
  3. 85ff264 Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  4. 51b09f2 switch statement code gen. by Devang Patel · 17 years ago
  5. b384d32 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  6. 4b6df3f Fixed all my recent test cases to have the RUN command and by Fariborz Jahanian · 17 years ago
  7. ca3adf7 Previously, I warned those methods not implemented in implementation class/category. by Fariborz Jahanian · 17 years ago
  8. 8f3fde0 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  9. 00ae8d5 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago
  10. d0b0154 Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
  11. a9c0102 objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 17 years ago
  12. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  13. d0b90bf This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 17 years ago
  14. 0da1c10 Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy by Fariborz Jahanian · 17 years ago
  15. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  16. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  17. b27c156 This patch adds to new things to clang: by Fariborz Jahanian · 17 years ago
  18. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  19. bd51b87 Handle forward declaration of classes and prevent re-instantiation of by Fariborz Jahanian · 17 years ago
  20. 1d5b0e3 Match to do some semantic analysis on objective-c class decl. by Fariborz Jahanian · 17 years ago
  21. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  22. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  23. e267ab6 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  24. 410e3e2 Remove a FIXME. Replace a couple asserts with an appropriate error by Steve Naroff · 17 years ago
  25. 3536b44 by Steve Naroff · 17 years ago
  26. a65ff6c Patch for parsing objective-c style method calls. by Fariborz Jahanian · 17 years ago
  27. 0ccb27d 1. Fix parsing of method prototype involving c-style argument declarations. by Fariborz Jahanian · 17 years ago
  28. e39245b disable this for now. by Chris Lattner · 17 years ago
  29. 371227d by Steve Naroff · 17 years ago
  30. d35005e by Steve Naroff · 17 years ago
  31. 38374b0 by Steve Naroff · 17 years ago
  32. 6f9f307 More semantic analysis of initializers. by Steve Naroff · 17 years ago
  33. f009063 by Steve Naroff · 17 years ago
  34. 98414c1 Fix a bug/missing-feature Ted noticed: the 'unused' warning should not by Chris Lattner · 17 years ago
  35. d7444aa by Steve Naroff · 17 years ago
  36. 42471f8 by Steve Naroff · 17 years ago
  37. d3fb6ad a new testcase by Chris Lattner · 17 years ago
  38. 054fad5 -C mode doesn't return comments on "#" lines, so the diag checker doesn't pick them up. by Chris Lattner · 17 years ago
  39. b944951 Ensure we diagnose long long literals in C90 mode. by Neil Booth · 17 years ago
  40. 9b3d3a9 Added checking (during parsing) of comparison of floating point values using == or !=. by Ted Kremenek · 17 years ago
  41. d5bbce4 Teach Type::is[un]SignedIntegerType about enum decls. This allows the code generator by Chris Lattner · 17 years ago
  42. 53a3234 by Steve Naroff · 17 years ago
  43. 94f81fd extwarn about VLAs in C89 mode. by Chris Lattner · 17 years ago
  44. b23deda warn about long long when in c89 mode. by Chris Lattner · 17 years ago
  45. 1e45efa new testcase by Chris Lattner · 17 years ago
  46. ac60968 compute the required destination type for an enum, emitting various warnings. by Chris Lattner · 17 years ago
  47. ae3b701 now that all the infrastructure is in place, enforce C99 6.8.5p3. by Chris Lattner · 17 years ago
  48. 9cff1a9 add some more testcases now that sema is happier :) by Chris Lattner · 17 years ago
  49. 02b3c26 testcase that doesn't work quite yet by Chris Lattner · 17 years ago
  50. c30ebfb extwarn about decls intermixed with code in c89 mode. by Chris Lattner · 17 years ago
  51. 77878cc by Steve Naroff · 17 years ago
  52. 45a566c implement a fixme: __extension__ marker on decls in compound stmts. by Chris Lattner · 17 years ago
  53. 2215325 Fix test/Parser/if-scope-*.c. Patch by Neil Booth! by Chris Lattner · 17 years ago
  54. 8ae3a9f new testcases by Chris Lattner · 17 years ago
  55. 6e844ad Fix a bug reported by Keith Bauer by Chris Lattner · 17 years ago
  56. 26b8ff4 by Steve Naroff · 17 years ago
  57. ce7f4cc steve's recent changes fixed this bogus warning. by Chris Lattner · 17 years ago
  58. d28f815 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  59. 9c62c1d new testcase by Chris Lattner · 17 years ago
  60. ad7ef48 Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  61. e45fa6a reenable this. by Chris Lattner · 17 years ago
  62. 388577b test the parser only, not sema. by Chris Lattner · 17 years ago
  63. 46f93d0 implement codegen for real/imag. TODO: imag of non-complex. by Chris Lattner · 17 years ago
  64. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  65. fd90ac0 make this harder by Chris Lattner · 17 years ago
  66. 0471f5b finish off switch case overlap checking, adding support for by Chris Lattner · 17 years ago
  67. 6efc4d3 detect and diagnose empty case ranges: by Chris Lattner · 17 years ago
  68. f334850 fix a segfault in cases where there are no cases. by Chris Lattner · 17 years ago
  69. b2ec9d6 report duplicate case values. TODO: report duplicate/overlapping ranges. by Chris Lattner · 17 years ago
  70. 99351fd this test is passing, though it is generating bogus code at the moment. by Chris Lattner · 17 years ago
  71. f4021e7 start checking case values of switch stmts more closely. Emit overflow by Chris Lattner · 17 years ago
  72. e389201 run .m files as tests by Chris Lattner · 17 years ago
  73. d818a71 Test that cocoa parses with -parse-noop. In the future by Chris Lattner · 17 years ago
  74. a36ce71 Fix a nasty C99 scope issue that Neil pointed out (for ifs) by Chris Lattner · 17 years ago
  75. 2f9d5fe add a testcase I forgot to check in long ago by Chris Lattner · 17 years ago
  76. 2b8bac5 we now correctly emit: by Chris Lattner · 17 years ago
  77. 7016a70 Fix array->pointer decay. This unbreaks test/CodeGen/array.c by Chris Lattner · 17 years ago
  78. f8f9517 Added test cases for the return-stack-address checker to test support by Ted Kremenek · 17 years ago
  79. 4774b4d Added extra test case to check proper handling of archaic array indexing: 4[A] by Ted Kremenek · 17 years ago
  80. 71993dd Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  81. e77fd3c by Steve Naroff · 17 years ago
  82. 71895b9 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  83. 954698c xfail this for now. by Chris Lattner · 17 years ago
  84. c301815 add support for a top-level __extension__ marker, implementing a todo. by Chris Lattner · 17 years ago
  85. 59907c4 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  86. 009e9f7 Build ASTs before relexing the file. This avoids having comment finding mutate the by Chris Lattner · 17 years ago
  87. cff944b fix this test to pass. by Chris Lattner · 17 years ago
  88. 12b2be2 make this harder by Chris Lattner · 17 years ago
  89. 13b7c5f Finish implementing __builtin_classify_type()... by Steve Naroff · 17 years ago
  90. 69625f4 by Steve Naroff · 17 years ago
  91. 345dc62 the sse intrinsics are missing, leading to errors. by Chris Lattner · 17 years ago
  92. 52e3de5 fix hang in testsuite by Chris Lattner · 17 years ago
  93. 608e0ee Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  94. d04fdd5 by Steve Naroff · 17 years ago
  95. 441995e by Steve Naroff · 17 years ago
  96. 90997ac testcase for vector element access stuff. by Chris Lattner · 17 years ago
  97. f13ebf0 oops, this is the real fix. by Chris Lattner · 17 years ago
  98. 6f66c26 update test by Chris Lattner · 17 years ago
  99. 281a492 make sure we don't lose the ability to parse carbon.h by Chris Lattner · 17 years ago
  100. 8d1a3b8 by Steve Naroff · 17 years ago