1. 32a3999 verify that tests contain RUN lines. by Chris Lattner · 17 years ago
  2. a9e6372 Fix a codegen crash on test/CodeGen/cast.c, reported by Keith. by Chris Lattner · 17 years ago
  3. 4619366 fix expected errors. by Chris Lattner · 17 years ago
  4. 2d6410d Add -pedantic so test passes. by Fariborz Jahanian · 17 years ago
  5. b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
  6. 4ffc541 Implemented type checking for pointer of objects of protocol-qualified types. by Fariborz Jahanian · 17 years ago
  7. 61477f7 Implemented rewriting of protocol-qualified global variable types. by Fariborz Jahanian · 17 years ago
  8. fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
  9. 0105556 For @optional unimplemented methods do not issue the warning. by Fariborz Jahanian · 17 years ago
  10. f366b4c Fixed a parsing bug whereby @optional/@required keyword is not followed by by Fariborz Jahanian · 17 years ago
  11. a924e7c by Steve Naroff · 17 years ago
  12. df5eb71 Reimplement support for strings that initialize global inits now that by Chris Lattner · 17 years ago
  13. 6e8df73 Add support to share llvm fields for bit-fields. by Devang Patel · 17 years ago
  14. 32150f3 by Steve Naroff · 17 years ago
  15. 2fdc374 by Steve Naroff · 17 years ago
  16. 4fd46bc add support for implicit cast from array to pointer that is not the element by Chris Lattner · 17 years ago
  17. 53ea781 disable case that makes this fail. by Chris Lattner · 17 years ago
  18. 14c7500 Use getABITypeSizeInBits() instead of getTypeSizeInBits() during struct layout. by Devang Patel · 17 years ago
  19. 5ccc701 extend or truncate the initializer for a string initializer to match its type. by Chris Lattner · 17 years ago
  20. a44cf73 Implement codegen support for: char text[8] = "string"; by Chris Lattner · 17 years ago
  21. 6e4ab61 Implement correct semantic analysis of subtractions, implementing C99 6.5.6. by Chris Lattner · 17 years ago
  22. 5f18032 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 17 years ago
  23. 2ea81a8 implement support for functions that initialize globals. by Chris Lattner · 17 years ago
  24. c92942c Test case for my last patch for implementation of static protocoled type by Fariborz Jahanian · 17 years ago
  25. 36ee2cb Patch for rewriting of @protocol. by Fariborz Jahanian · 17 years ago
  26. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
  27. 37884b3 More struct bitfields layout work. Now handle, by Devang Patel · 17 years ago
  28. d20f176 test case for my very last patch. by Fariborz Jahanian · 17 years ago
  29. ec584d6 Fix a bug handling typedefs of functions, patch by Nuno Lopes! by Chris Lattner · 17 years ago
  30. 5ef404f Patch to prevent crash on use of objc2 syntax. by Fariborz Jahanian · 17 years ago
  31. 7127431 Changed type-cast of "struct objc_super"'s 2nd initializer to match definition of by Fariborz Jahanian · 17 years ago
  32. e638639 by Steve Naroff · 17 years ago
  33. e2c4cd8 Test case for my last patch. by Fariborz Jahanian · 17 years ago
  34. 87ce5d1 Fixed a bug exposed by referencing an ivar field using component reference syntax. by Fariborz Jahanian · 17 years ago
  35. ae36076 Implemented initial support for "-triple" option to the clang driver. This by Ted Kremenek · 17 years ago
  36. 0d6ca11 Fix an ast-print/ast-dump bug. by Chris Lattner · 17 years ago
  37. 43d6975 Fix for testcase that assigns a dereferenced reference to a pointer. The by Bill Wendling · 17 years ago
  38. ec86b97 Ignore typedefs in pointer arithmetic codegen. by Seo Sanghyeon · 17 years ago
  39. 2de3b3a Fix isStructureType and isUnionType to ignore typedefs, as stated by Seo Sanghyeon · 17 years ago
  40. ce39faa Treat discarding array initializer elements as an extwarn (so -pedantic-errors flags it). Allow CodeGen to truncate the initializer if needed. by Christopher Lamb · 17 years ago
  41. d411e04 all filevar's have static storage. Previously a global with by Chris Lattner · 17 years ago
  42. e86e9ce Commit test for CL 44440. by Christopher Lamb · 17 years ago
  43. e6e25a5 Fix buggy test by Chris Lattner · 17 years ago
  44. 9615bf8 add codegen support for global inits that require array decay. by Chris Lattner · 17 years ago
  45. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  46. 58c3f9e implement codegen for functions whose function body type don't match by Chris Lattner · 17 years ago
  47. 2824723 Support initalisers for more than just int-typed static variables. by Oliver Hunt · 17 years ago
  48. 1438b49 fix a couple switch codegen problems Oliver reported. by Chris Lattner · 17 years ago
  49. 3907323 GCC has an extension where the left hand side of the ? : operator can be omitted. Handle this in a few more places. by Anders Carlsson · 17 years ago
  50. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  51. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  52. c69a581 Support fully general case expressions, patch by Sanghyeon Seo! by Chris Lattner · 17 years ago
  53. fbd9173 Doh! Check in this long overdue test fix. by Christopher Lamb · 17 years ago
  54. 695dbb6 Support lax vector conversions. by Anders Carlsson · 17 years ago
  55. 5026540 Added "complex.c" (a copy of test/Codegen/complex.) to the serialization by Ted Kremenek · 17 years ago
  56. 016765e Support floating point literals of the form "1e-16f" which specify an exponent but no decimal point. by Christopher Lamb · 17 years ago
  57. b594a40 Fixed test case to not expect a warning when one should not be emitted. by Ted Kremenek · 17 years ago
  58. 9e7f0ec Added test cases for -Wfloat-equal to test comparisons against literals that can be by Ted Kremenek · 17 years ago
  59. 251f732 Inlined test case to make it independent of the stmt_exprs test case in test/Sema. by Ted Kremenek · 17 years ago
  60. efb7153 Added the "Serialization" test directory to the set of tests executed. by Ted Kremenek · 17 years ago
  61. f387aeb Added initial test case for testing serialization of ASTs. This test by Ted Kremenek · 17 years ago
  62. 6a18c76 Changed TestRunner.sh to dump the output and generated script files in by Ted Kremenek · 17 years ago
  63. 83c903f Added missing "RUN:" to comment for test case file. This fixed a bug where the test by Ted Kremenek · 17 years ago
  64. b751c28 Fix a bug checking for 'int foo(void)' that didn't look through typedefs of void. by Chris Lattner · 17 years ago
  65. 0d3b50e Fix typo in writable string test by Oliver Hunt · 17 years ago
  66. 01acb91 Adding code gen tests for writable and shared string literals. by Oliver Hunt · 17 years ago
  67. dd1b516 Add more intrinsics. We can now correctly parse both Carbon.h and Cocoa.h without having to do -arch ppc. by Anders Carlsson · 17 years ago
  68. 4cc6271 add several cases that Expr::hasStaticStorage missed, pointed out by Oliver Hunt by Chris Lattner · 17 years ago
  69. 529a4ad by Steve Naroff · 17 years ago
  70. a64db8f Report errors for invalid casts from/to vectors. by Anders Carlsson · 17 years ago
  71. 3f35148 Fixed #include of objc/objc.h so that it works on case-sensitive filesystems. by Ted Kremenek · 17 years ago
  72. 2c7038b Patch to fix a regression caused by recent rewrite changes. by Fariborz Jahanian · 17 years ago
  73. f5f20bd The checking for the delimiters of expected error/warning messages was by Bill Wendling · 17 years ago
  74. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  75. 09376fd this works. by Chris Lattner · 17 years ago
  76. 6fa9086 Check that the clobber registers are valid. by Anders Carlsson · 17 years ago
  77. ca7aa1f Added more test cases for uninitialized values checker. by Ted Kremenek · 17 years ago
  78. ff7c538 Fixed bogus culling of uninitialized-values "taint" propagation during assignments. by Ted Kremenek · 17 years ago
  79. bfc5e50 Moved dead-stores test cast to a new test suite subdirectory: Analysis. by Ted Kremenek · 17 years ago
  80. 75cf288 improve codegen for global variable initializers, implementing by Chris Lattner · 17 years ago
  81. 04728b7 Check asm input and output expressions. by Anders Carlsson · 17 years ago
  82. 0c3eb29 Fix PR1820, an incredibly subtle macro expansion bug that Neil discovered. by Chris Lattner · 17 years ago
  83. eecf847 GCC fails if there is a trailing colon but no clobbers. by Anders Carlsson · 17 years ago
  84. 5519644 Improve function decl merging, patch by Oliver Hunt! by Chris Lattner · 17 years ago
  85. 74c43a0 Added another test case for the Dead Stores checker that tests that by Ted Kremenek · 17 years ago
  86. 8aefcbf Added test case for dead stores checker (live variables analysis) that tests by Ted Kremenek · 17 years ago
  87. f06273f Put back the flags field in the constant CF string type. by Anders Carlsson · 17 years ago
  88. aa395ba Added test case for dead-stores checker. Test case provided by Nuno Lopes. by Ted Kremenek · 17 years ago
  89. f82228f Tighten up address-of checking, implementing test/Sema/expr-address-of.c. by Chris Lattner · 17 years ago
  90. b283298 fix a bug Steve noticed, where a #import of the main file itself would fail. by Chris Lattner · 17 years ago
  91. 921e9ff Fix a bug handling hex floats in c90 mode, pointed out by Neil. by Chris Lattner · 17 years ago
  92. 41af093 implement test/Sema/typedef-prototype.c, allowing code by Chris Lattner · 17 years ago
  93. 6de88a8 Type encoding for structs. by Fariborz Jahanian · 17 years ago
  94. bac97d4 Fixed a rewrite of metadata bug when category implementation has no matching interface. by Fariborz Jahanian · 17 years ago
  95. 4c1a2a9 Parse "sizeof(arr)[0]" as a sizeof of an expr if arr is an expression. by Chris Lattner · 17 years ago
  96. 1b2c54b Updated test case to flag about comparisons against constants. We may by Ted Kremenek · 17 years ago
  97. c8f488d Modified -Wfloat-equal logic to suppress warnings where floating point values by Ted Kremenek · 17 years ago
  98. db87bca Added -Wfloat-equal option to the driver. This makes warnings about by Ted Kremenek · 17 years ago
  99. 1d09ecc improve handling of address of global when checking for by Chris Lattner · 17 years ago
  100. 232220c Patch to do statically typed ivar references. by Fariborz Jahanian · 17 years ago