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