1. 2b1cc8b continue cleaning up code, and disable sending a message directly to an by Chris Lattner · 16 years ago
  2. 3a9fdb4 Handle unnamed bitfields when parsing C++ classes. by Argyrios Kyrtzidis · 16 years ago
  3. 4cc18a4 Add parsing support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  4. 13fd7e5 "this patch adds code generation hooks for Objective-C constant strings. It also modifies Sema so that Objective-C constant strings are treated as untyped objects if the interface for the constant string class can not be found. This is consistent with Apple GCC. I thought it was consistent with GNU GCC, since this was causing failures when trying to compile GNUstep with (GNU) GCC, but it appears that this is not the case when attempting to produce a simple test case to demonstrate it. Possibly there is a way of making the error go away, but I haven't found out what it is yet." by Chris Lattner · 16 years ago
  5. c577a0e Multiple tests in a single test file must be linked with '&&'. by Argyrios Kyrtzidis · 16 years ago
  6. b93fb49 handle the full assignment-expression grammar when using an by Chris Lattner · 16 years ago
  7. aec3a1e Fix a couple crashes on invalid input. by Chris Lattner · 16 years ago
  8. 1f3105e Change diagnostic per suggestion, to make it a bit clearer what is happening. by Eli Friedman · 16 years ago
  9. 1b76779 fix typo by Gabor Greif · 16 years ago
  10. 33701a6 Test from PR2332; bug already fixed by r51311. by Eli Friedman · 16 years ago
  11. 6e33dd5 Fix the scope of K&R-style argument declarations so that they don't by Eli Friedman · 16 years ago
  12. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  13. 65bb89c Two improvements to initializer parsing: by Chris Lattner · 16 years ago
  14. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  15. 3825c2e reject 'int test(x, x) int x; {}' by Chris Lattner · 17 years ago
  16. aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
  17. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  18. 6b88450 implement simple support for arbitrary token lookahead. Change the by Chris Lattner · 17 years ago
  19. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  20. 5280408 Fix PR2042. One remaining issue: we don't currently diagnose by Chris Lattner · 17 years ago
  21. 99d724f Fix PR1999, by emitting a hard error only if an argument declarator is completely by Chris Lattner · 17 years ago
  22. 8bd36fc Behave correctly if a constraint expression is invalid. by Anders Carlsson · 17 years ago
  23. 64515f3 by Steve Naroff · 17 years ago
  24. 6e10a08 make some diagnostics more terse, update testcases. by Chris Lattner · 17 years ago
  25. e0e713b Fix PR1965: missing diagnostics for parameters that are missing by Chris Lattner · 17 years ago
  26. 5c74942 Add support for dispatching an objc message to a variable by Chris Lattner · 17 years ago
  27. da46f3b First half of a fix for the "objc message send in initializer" bug. This only by Chris Lattner · 17 years ago
  28. 7c453b3 Don't ICE on missing interface declaration when declaring one of its protocols. by Fariborz Jahanian · 17 years ago
  29. 20552d2 Recover from user typo not having proper @interface decl and a bad foreach decl. by Fariborz Jahanian · 17 years ago
  30. a12a75f Remove non-ascii chaaracter from diagnostic by Fariborz Jahanian · 17 years ago
  31. 94cdb25 Warn (as gcc does) when @end does not close anything. by Fariborz Jahanian · 17 years ago
  32. 540fc53 Limit type of foreach's element and collection to be a pointer to by Fariborz Jahanian · 17 years ago
  33. 8ce5da3 Issue diagnostics if more than one declaration in objectove-c's foreach-stmt header. by Fariborz Jahanian · 17 years ago
  34. b7b6115 add comments for the various AssignConvertType's, and split int->pointer from pointer->int. by Chris Lattner · 17 years ago
  35. 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
  36. 1f990d6 Patch to add semantics check for ObjC2's foreacn statement. by Fariborz Jahanian · 17 years ago
  37. 0de2ae2 Issue diagnostic when objective-c's @interface is preceeded by a type specifier. by Fariborz Jahanian · 17 years ago
  38. 0ba0aa1 Prevent crash on incorrect objc messaging expression. by Fariborz Jahanian · 17 years ago
  39. 1e57144 add a file I forgot to svn add. by Chris Lattner · 17 years ago
  40. 516bd46 Fix a crash on a top-level objc string, patch by Nico Weber by Chris Lattner · 17 years ago
  41. cb53b36 - Use Tok.isObjCAtKeyword instead of Tok.getIdentifierInfo()->getObjCKeywordID(). by Chris Lattner · 17 years ago
  42. 68cfd49 reenable this code, fix the testcase. by Chris Lattner · 17 years ago
  43. f366b4c Fixed a parsing bug whereby @optional/@required keyword is not followed by by Fariborz Jahanian · 17 years ago
  44. 5ef404f Patch to prevent crash on use of objc2 syntax. by Fariborz Jahanian · 17 years ago
  45. ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 17 years ago
  46. eecf847 GCC fails if there is a trailing colon but no clobbers. by Anders Carlsson · 17 years ago
  47. 4c1a2a9 Parse "sizeof(arr)[0]" as a sizeof of an expr if arr is an expression. by Chris Lattner · 17 years ago
  48. e61933d Fix a recovery bug Fariborz and I noticed yesterday. We were producing: by Chris Lattner · 17 years ago
  49. 02209fb remove typedef. by Chris Lattner · 17 years ago
  50. a0818e3 Patch to parse @selector expressions. by Fariborz Jahanian · 17 years ago
  51. bece4ac Fixed a bug whereby, struct tag name matches a typedef/objc-class name by Fariborz Jahanian · 17 years ago
  52. 243b64b This patch implementa objective-c's @compatibilty-alias declaration. by Fariborz Jahanian · 17 years ago
  53. dfbcce2 Implemented parsing of objctive-c protocol conforming type used in by Fariborz Jahanian · 17 years ago
  54. 3b427b3 rename -parse-ast-print to -ast-print by Chris Lattner · 17 years ago
  55. 2d85f8b Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  56. b384d32 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  57. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  58. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  59. a65ff6c Patch for parsing objective-c style method calls. by Fariborz Jahanian · 17 years ago
  60. 0ccb27d 1. Fix parsing of method prototype involving c-style argument declarations. by Fariborz Jahanian · 17 years ago
  61. 45a566c implement a fixme: __extension__ marker on decls in compound stmts. by Chris Lattner · 17 years ago
  62. 2215325 Fix test/Parser/if-scope-*.c. Patch by Neil Booth! by Chris Lattner · 17 years ago
  63. ad7ef48 Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  64. e45fa6a reenable this. by Chris Lattner · 17 years ago
  65. 388577b test the parser only, not sema. by Chris Lattner · 17 years ago
  66. a36ce71 Fix a nasty C99 scope issue that Neil pointed out (for ifs) by Chris Lattner · 17 years ago
  67. 2f9d5fe add a testcase I forgot to check in long ago by Chris Lattner · 17 years ago
  68. e77fd3c by Steve Naroff · 17 years ago
  69. c301815 add support for a top-level __extension__ marker, implementing a todo. by Chris Lattner · 17 years ago
  70. cff944b fix this test to pass. by Chris Lattner · 17 years ago
  71. 13b7c5f Finish implementing __builtin_classify_type()... by Steve Naroff · 17 years ago
  72. 69625f4 by Steve Naroff · 17 years ago
  73. 52e3de5 fix hang in testsuite by Chris Lattner · 17 years ago
  74. 608e0ee Restrict vector component access (using "." and "[]") to variables. by Steve Naroff · 17 years ago
  75. d04fdd5 by Steve Naroff · 17 years ago
  76. 441995e by Steve Naroff · 17 years ago
  77. 8d1a3b8 by Steve Naroff · 17 years ago
  78. 2cb64ec by Steve Naroff · 17 years ago
  79. d1861fd by Steve Naroff · 17 years ago
  80. fec0b49 Finish up semantic analysis for vector components. by Steve Naroff · 17 years ago
  81. e1b31fe Implement syntax/semantic analysis for OCU Vector Components. by Steve Naroff · 17 years ago
  82. eca9967 don't expect to be able to reparse arbitrary system headers. by Chris Lattner · 17 years ago
  83. 700204c by Steve Naroff · 17 years ago
  84. 95cfb85 Catch goto's with a missing identifier, patch by Neil Booth. by Chris Lattner · 17 years ago
  85. 4aa88f8 by Steve Naroff · 17 years ago
  86. 16beff8 by Steve Naroff · 17 years ago
  87. 8bf9f07 Improve char literal pretty printing, patch by Keith Bauer! by Chris Lattner · 17 years ago
  88. a7fa381 update tests by Chris Lattner · 17 years ago
  89. e8fdbba -pedantic no longer defaults to on. by Chris Lattner · 17 years ago
  90. 2b80ec2 update test by Chris Lattner · 17 years ago
  91. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago