1. e61933d Fix a recovery bug Fariborz and I noticed yesterday. We were producing: by Chris Lattner · 17 years ago
  2. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  3. a83cc33 Handle non-constant initializers. by Devang Patel · 17 years ago
  4. dbb46b1 Fix typo. by Devang Patel · 17 years ago
  5. b1e3989 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  6. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago
  7. 9a11b9a Fix a crash on test/Sema/invalid-decl.c by Chris Lattner · 17 years ago
  8. 54d02e9 by Steve Naroff · 17 years ago
  9. d4dd30f by Steve Naroff · 17 years ago
  10. 27b837c UsualArithmeticConversions is crashing with an assert by Chris Lattner · 17 years ago
  11. fd8b4a4 by Steve Naroff · 17 years ago
  12. 02209fb remove typedef. by Chris Lattner · 17 years ago
  13. 417c909 by Steve Naroff · 17 years ago
  14. 3b8e891 by Steve Naroff · 17 years ago
  15. 390d50a Implementation of AST for @protocol expression. by Fariborz Jahanian · 17 years ago
  16. 1a86b33 Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
  17. 81bfde9 by Steve Naroff · 17 years ago
  18. 3e7fd15 Patch to diagnose duplicate method implementations. by Fariborz Jahanian · 17 years ago
  19. b62f681 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  20. 983df5b by Steve Naroff · 17 years ago
  21. 943140e initialization of references should not do default fn/array promotions. by Chris Lattner · 17 years ago
  22. a0818e3 Patch to parse @selector expressions. by Fariborz Jahanian · 17 years ago
  23. be127ba Several name lookup conflict detection fixes involving objective-c names. by Fariborz Jahanian · 17 years ago
  24. 1ff8b58 Fix a warning by Anders Carlsson · 17 years ago
  25. 1109b42 Patch to check for duplicate method decls in protocols. by Fariborz Jahanian · 17 years ago
  26. e7f64cc Check and diagnose that objective-c objects may not be statically allocated. by Fariborz Jahanian · 17 years ago
  27. 580b664 Added notion of '*' specified format width/specifiers when checking by Ted Kremenek · 17 years ago
  28. 4cabdfc Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry lookup by Fariborz Jahanian · 17 years ago
  29. 8f74476 by Steve Naroff · 17 years ago
  30. 6eda8c9 Add some more diagnostics for va_start, fix tests so they pass with these new diags. by Anders Carlsson · 17 years ago
  31. bece4ac Fixed a bug whereby, struct tag name matches a typedef/objc-class name by Fariborz Jahanian · 17 years ago
  32. 075878a Temporary fix to test case. This area is currently under construction...test case will be changing again soon. by Steve Naroff · 17 years ago
  33. 243b64b This patch implementa objective-c's @compatibilty-alias declaration. by Fariborz Jahanian · 17 years ago
  34. dfbcce2 Implemented parsing of objctive-c protocol conforming type used in by Fariborz Jahanian · 17 years ago
  35. 4b6c905 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  36. 3b427b3 rename -parse-ast-print to -ast-print by Chris Lattner · 17 years ago
  37. e21b573 Refinements to Sema::GetObjcIdType()... by Steve Naroff · 17 years ago
  38. 3b95017 by Steve Naroff · 17 years ago
  39. 2d85f8b Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  40. b216c88 by Steve Naroff · 17 years ago
  41. 2c30d8f Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
  42. a2c5342 new test by Devang Patel · 17 years ago
  43. c049e4f Code gen case statement ranges. by Devang Patel · 17 years ago
  44. 245f92a This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  45. 2d79d0f Support case statement ranges. by Devang Patel · 17 years ago
  46. 85ff264 Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  47. 51b09f2 switch statement code gen. by Devang Patel · 17 years ago
  48. b384d32 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  49. 4b6df3f Fixed all my recent test cases to have the RUN command and by Fariborz Jahanian · 17 years ago
  50. ca3adf7 Previously, I warned those methods not implemented in implementation class/category. by Fariborz Jahanian · 17 years ago
  51. 8f3fde0 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  52. 00ae8d5 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago
  53. d0b0154 Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
  54. a9c0102 objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 17 years ago
  55. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  56. d0b90bf This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 17 years ago
  57. 0da1c10 Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy by Fariborz Jahanian · 17 years ago
  58. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  59. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 17 years ago
  60. b27c156 This patch adds to new things to clang: by Fariborz Jahanian · 17 years ago
  61. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  62. bd51b87 Handle forward declaration of classes and prevent re-instantiation of by Fariborz Jahanian · 17 years ago
  63. 1d5b0e3 Match to do some semantic analysis on objective-c class decl. by Fariborz Jahanian · 17 years ago
  64. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  65. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  66. e267ab6 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  67. 410e3e2 Remove a FIXME. Replace a couple asserts with an appropriate error by Steve Naroff · 17 years ago
  68. 3536b44 by Steve Naroff · 17 years ago
  69. a65ff6c Patch for parsing objective-c style method calls. by Fariborz Jahanian · 17 years ago
  70. 0ccb27d 1. Fix parsing of method prototype involving c-style argument declarations. by Fariborz Jahanian · 17 years ago
  71. e39245b disable this for now. by Chris Lattner · 17 years ago
  72. 371227d by Steve Naroff · 17 years ago
  73. d35005e by Steve Naroff · 17 years ago
  74. 38374b0 by Steve Naroff · 17 years ago
  75. 6f9f307 More semantic analysis of initializers. by Steve Naroff · 17 years ago
  76. f009063 by Steve Naroff · 17 years ago
  77. 98414c1 Fix a bug/missing-feature Ted noticed: the 'unused' warning should not by Chris Lattner · 17 years ago
  78. d7444aa by Steve Naroff · 17 years ago
  79. 42471f8 by Steve Naroff · 17 years ago
  80. d3fb6ad a new testcase by Chris Lattner · 17 years ago
  81. 054fad5 -C mode doesn't return comments on "#" lines, so the diag checker doesn't pick them up. by Chris Lattner · 17 years ago
  82. b944951 Ensure we diagnose long long literals in C90 mode. by Neil Booth · 17 years ago
  83. 9b3d3a9 Added checking (during parsing) of comparison of floating point values using == or !=. by Ted Kremenek · 17 years ago
  84. d5bbce4 Teach Type::is[un]SignedIntegerType about enum decls. This allows the code generator by Chris Lattner · 17 years ago
  85. 53a3234 by Steve Naroff · 17 years ago
  86. 94f81fd extwarn about VLAs in C89 mode. by Chris Lattner · 17 years ago
  87. b23deda warn about long long when in c89 mode. by Chris Lattner · 17 years ago
  88. 1e45efa new testcase by Chris Lattner · 17 years ago
  89. ac60968 compute the required destination type for an enum, emitting various warnings. by Chris Lattner · 17 years ago
  90. ae3b701 now that all the infrastructure is in place, enforce C99 6.8.5p3. by Chris Lattner · 17 years ago
  91. 9cff1a9 add some more testcases now that sema is happier :) by Chris Lattner · 17 years ago
  92. 02b3c26 testcase that doesn't work quite yet by Chris Lattner · 17 years ago
  93. c30ebfb extwarn about decls intermixed with code in c89 mode. by Chris Lattner · 17 years ago
  94. 77878cc by Steve Naroff · 17 years ago
  95. 45a566c implement a fixme: __extension__ marker on decls in compound stmts. by Chris Lattner · 17 years ago
  96. 2215325 Fix test/Parser/if-scope-*.c. Patch by Neil Booth! by Chris Lattner · 17 years ago
  97. 8ae3a9f new testcases by Chris Lattner · 17 years ago
  98. 6e844ad Fix a bug reported by Keith Bauer by Chris Lattner · 17 years ago
  99. 26b8ff4 by Steve Naroff · 17 years ago
  100. ce7f4cc steve's recent changes fixed this bogus warning. by Chris Lattner · 17 years ago