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