1. 6cd862c implement sizeof(enum x), patch inspired by Keith Bauer. by Chris Lattner · 17 years ago
  2. b7416f9 better error recovery for non-i-c-e enum constants. by Chris Lattner · 17 years ago
  3. 7946dd3 C++ allows empty enum list. by Chris Lattner · 17 years ago
  4. 5ae962da add some accessors. by Chris Lattner · 17 years ago
  5. 6569ce0 Add enum type conversion policies, patch by Keith Bauer by Chris Lattner · 17 years ago
  6. 96eabe0 Updated checker for "return of address of stack variable" to look for by Ted Kremenek · 17 years ago
  7. 9cff1a9 add some more testcases now that sema is happier :) by Chris Lattner · 17 years ago
  8. fb0d496 Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). by Steve Naroff · 17 years ago
  9. 02b3c26 testcase that doesn't work quite yet by Chris Lattner · 17 years ago
  10. c30ebfb extwarn about decls intermixed with code in c89 mode. by Chris Lattner · 17 years ago
  11. 77878cc by Steve Naroff · 17 years ago
  12. 716c730 by Steve Naroff · 17 years ago
  13. f1448a0 by Steve Naroff · 17 years ago
  14. 45a566c implement a fixme: __extension__ marker on decls in compound stmts. by Chris Lattner · 17 years ago
  15. bfc0c1a move EmitAggregateCopy into AggExprEmitter by Chris Lattner · 17 years ago
  16. 2215325 Fix test/Parser/if-scope-*.c. Patch by Neil Booth! by Chris Lattner · 17 years ago
  17. d8d1936 remove dead code by Chris Lattner · 17 years ago
  18. 0e7d53c remove dead protos by Chris Lattner · 17 years ago
  19. 1e4d21e eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
  20. 660ac12 eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
  21. 6b5d0bf implement a fixme by Chris Lattner · 17 years ago
  22. 8ae3a9f new testcases by Chris Lattner · 17 years ago
  23. 04dc764 Implement compound assignment operators whose LHS is scalar but RHS is complex. by Chris Lattner · 17 years ago
  24. ab340c2 implement codegen of compound assignment operators for complex. by Chris Lattner · 17 years ago
  25. 61919a1 If a visitor doesn't define VisitBinMulAssign, fallback to VisitCompoundAssignOperator by Chris Lattner · 17 years ago
  26. 3ccf774 compound assignment operators are of type CompoundAssignOperator by Chris Lattner · 17 years ago
  27. 402f72f dispatch to functions like VisitBinRemAssign with knowledge that by Chris Lattner · 17 years ago
  28. 612c40c update fixme's by Chris Lattner · 17 years ago
  29. 3219c5d implement complex division by Chris Lattner · 17 years ago
  30. 0c94641 Add isysroot support, patch by Keith Bauer by Chris Lattner · 17 years ago
  31. 5e9885d Fix %p format checking, patch by Keith Bauer. by Chris Lattner · 17 years ago
  32. a9e2ea1 For warnings like this: by Chris Lattner · 17 years ago
  33. 6e844ad Fix a bug reported by Keith Bauer by Chris Lattner · 17 years ago
  34. 3420d0d fix a typo noticed by Gordon Henriksen by Chris Lattner · 17 years ago
  35. abe471b llvmgcc is right :) by Chris Lattner · 17 years ago
  36. a3e7bfb compound assignmetns work for scalars. by Chris Lattner · 17 years ago
  37. ed70f0a implement conversions of complex to bool. by Chris Lattner · 17 years ago
  38. 9069fa2 remove ConvertScalarValueToBool. by Chris Lattner · 17 years ago
  39. 9abc84e reimplement ConvertScalarValueToBool in CGExprScalar.cpp by Chris Lattner · 17 years ago
  40. 4f1a7b3 refactor some code to expose compex->scalar conversion to CGF by Chris Lattner · 17 years ago
  41. 190dbe2 be slightly more volatile correct by Chris Lattner · 17 years ago
  42. 26b8ff4 by Steve Naroff · 17 years ago
  43. 8b2f3b7 these fixme's are easy :) by Chris Lattner · 17 years ago
  44. d31beb1 implement a fixme, add a couple more :) by Chris Lattner · 17 years ago
  45. 58a2e94 there are no conversions from aggregates to scalars. by Chris Lattner · 17 years ago
  46. cf28908 implement conversions from complex to scalar types. by Chris Lattner · 17 years ago
  47. 10b00cf Omit EmitConversion by Chris Lattner · 17 years ago
  48. 4b0029d Fix return of aggregate and return of complex. by Chris Lattner · 17 years ago
  49. e72608b these implicit conversions are now explicit :) by Chris Lattner · 17 years ago
  50. e937712 remove uses of EmitConversion by Chris Lattner · 17 years ago
  51. abe6719 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  52. 3707b25 refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  53. ce7f4cc steve's recent changes fixed this bogus warning. by Chris Lattner · 17 years ago
  54. 31e0572 Break the assumption that any sort of scope (e.g. a loop scope) can by Chris Lattner · 17 years ago
  55. a7c9895 remove some dead enum values. by Chris Lattner · 17 years ago
  56. d272ff0 Implement casts from scalar -> complex and complex->complex. by Chris Lattner · 17 years ago
  57. cc26ed7 require that operands to __real/__imag are complex or arithmetic. This by Chris Lattner · 17 years ago
  58. 36f8406 implement codegen of __imag of a scalar. Our impl doesn't suffer from by Chris Lattner · 17 years ago
  59. 9a19edf Make initialization of complex vars work. by Chris Lattner · 17 years ago
  60. e936cc8 fix codegen of pre/post inc/dec of a pointer. by Chris Lattner · 17 years ago
  61. 7013c8c tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  62. 78e30fb int X[] isn't a VLA. This improves support for stdio.h on darwin. by Chris Lattner · 17 years ago
  63. 48a8094 Make some diags EXTENSION so they are errors with pedantic errors by Neil Booth · 17 years ago
  64. 2bbb4a1 implement rudimentary union layout support. by Chris Lattner · 17 years ago
  65. d3f6ca6 Why didn't gcc catch this? :( by Chris Lattner · 17 years ago
  66. 6de93ff Don't make unknown builtins fatal errors yet. by Chris Lattner · 17 years ago
  67. 11e6616 remove a bunch of dead code by Chris Lattner · 17 years ago
  68. af458c9 fix a bug introduced by the recent childification of ForStmt. by Chris Lattner · 17 years ago
  69. 70c8b2e Make parse-ast-print print the storage class and inline specifier of functions. by Chris Lattner · 17 years ago
  70. 4a70adb null pointers don't get an extra newline. by Chris Lattner · 17 years ago
  71. db68f1b implement codegen for complex literals. by Chris Lattner · 17 years ago
  72. 5d66145 add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  73. 6e400c2 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  74. 506b8de 1) refactor some code. by Chris Lattner · 17 years ago
  75. a5937dd merge checkrelational and checkequality into CheckCompareOperands, by Chris Lattner · 17 years ago
  76. d28f815 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  77. 9c62c1d new testcase by Chris Lattner · 17 years ago
  78. 3b44b57 The new correct compound assignment operators exposed a bug in codegen. by Chris Lattner · 17 years ago
  79. 8702a0f by Steve Naroff · 17 years ago
  80. bae3511 read and ignore the body of a namespace. by Chris Lattner · 17 years ago
  81. ad7ef48 Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  82. 210679c Give CXXBoolLiteralExpr a type (all expressions need a valid type). by Steve Naroff · 17 years ago
  83. 8f08cb7 refactor enough of the top-level parsing logic to parse and by Chris Lattner · 17 years ago
  84. f726175 C++ explicitly allows an empty source file. by Chris Lattner · 17 years ago
  85. 459e848 Fix the test/Sema/format-strings.c regression. This code should be refactored. by Chris Lattner · 17 years ago
  86. e45fa6a reenable this. by Chris Lattner · 17 years ago
  87. cc6f65d Fix the regression on test/Sema/cfstring.c by Chris Lattner · 17 years ago
  88. 388577b test the parser only, not sema. by Chris Lattner · 17 years ago
  89. eb14fe8 Split the ASTNode out for compound assignments out from binary operators. Now by Chris Lattner · 17 years ago
  90. 1f683e9 fix off-by-one error by Chris Lattner · 17 years ago
  91. 94f6781 Fix clang -parse-ast-dump carbon.c by Chris Lattner · 17 years ago
  92. 6338135 rename sNames -> StmtClassInfo. Make lookups constant time. by Chris Lattner · 17 years ago
  93. f1120de by Steve Naroff · 17 years ago
  94. 5d79425 remove a dead argument by Chris Lattner · 17 years ago
  95. 46f93d0 implement codegen for real/imag. TODO: imag of non-complex. by Chris Lattner · 17 years ago
  96. dbb3697 Implement sema support for __real/__imag nodes. by Chris Lattner · 17 years ago
  97. 8297777 Added child_begin/child_end to all subclasses of Stmt in Stmt.h. All by Ted Kremenek · 17 years ago
  98. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  99. a66622a Added ExprCXX.cpp by Ted Kremenek · 17 years ago
  100. a758d09 Implementation of child_begin/child_end for C++ expressions. by Ted Kremenek · 17 years ago