1. 4b0029d Fix return of aggregate and return of complex. by Chris Lattner · 17 years ago
  2. e72608b these implicit conversions are now explicit :) by Chris Lattner · 17 years ago
  3. e937712 remove uses of EmitConversion by Chris Lattner · 17 years ago
  4. abe6719 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  5. 3707b25 refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  6. ce7f4cc steve's recent changes fixed this bogus warning. by Chris Lattner · 17 years ago
  7. 31e0572 Break the assumption that any sort of scope (e.g. a loop scope) can by Chris Lattner · 17 years ago
  8. a7c9895 remove some dead enum values. by Chris Lattner · 17 years ago
  9. d272ff0 Implement casts from scalar -> complex and complex->complex. by Chris Lattner · 17 years ago
  10. cc26ed7 require that operands to __real/__imag are complex or arithmetic. This by Chris Lattner · 17 years ago
  11. 36f8406 implement codegen of __imag of a scalar. Our impl doesn't suffer from by Chris Lattner · 17 years ago
  12. 9a19edf Make initialization of complex vars work. by Chris Lattner · 17 years ago
  13. e936cc8 fix codegen of pre/post inc/dec of a pointer. by Chris Lattner · 17 years ago
  14. 7013c8c tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  15. 78e30fb int X[] isn't a VLA. This improves support for stdio.h on darwin. by Chris Lattner · 17 years ago
  16. 48a8094 Make some diags EXTENSION so they are errors with pedantic errors by Neil Booth · 17 years ago
  17. 2bbb4a1 implement rudimentary union layout support. by Chris Lattner · 17 years ago
  18. d3f6ca6 Why didn't gcc catch this? :( by Chris Lattner · 17 years ago
  19. 6de93ff Don't make unknown builtins fatal errors yet. by Chris Lattner · 17 years ago
  20. 11e6616 remove a bunch of dead code by Chris Lattner · 17 years ago
  21. af458c9 fix a bug introduced by the recent childification of ForStmt. by Chris Lattner · 17 years ago
  22. 70c8b2e Make parse-ast-print print the storage class and inline specifier of functions. by Chris Lattner · 17 years ago
  23. 4a70adb null pointers don't get an extra newline. by Chris Lattner · 17 years ago
  24. db68f1b implement codegen for complex literals. by Chris Lattner · 17 years ago
  25. 5d66145 add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  26. 6e400c2 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  27. 506b8de 1) refactor some code. by Chris Lattner · 17 years ago
  28. a5937dd merge checkrelational and checkequality into CheckCompareOperands, by Chris Lattner · 17 years ago
  29. d28f815 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  30. 9c62c1d new testcase by Chris Lattner · 17 years ago
  31. 3b44b57 The new correct compound assignment operators exposed a bug in codegen. by Chris Lattner · 17 years ago
  32. 8702a0f by Steve Naroff · 17 years ago
  33. bae3511 read and ignore the body of a namespace. by Chris Lattner · 17 years ago
  34. ad7ef48 Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  35. 210679c Give CXXBoolLiteralExpr a type (all expressions need a valid type). by Steve Naroff · 17 years ago
  36. 8f08cb7 refactor enough of the top-level parsing logic to parse and by Chris Lattner · 17 years ago
  37. f726175 C++ explicitly allows an empty source file. by Chris Lattner · 17 years ago
  38. 459e848 Fix the test/Sema/format-strings.c regression. This code should be refactored. by Chris Lattner · 17 years ago
  39. e45fa6a reenable this. by Chris Lattner · 17 years ago
  40. cc6f65d Fix the regression on test/Sema/cfstring.c by Chris Lattner · 17 years ago
  41. 388577b test the parser only, not sema. by Chris Lattner · 17 years ago
  42. eb14fe8 Split the ASTNode out for compound assignments out from binary operators. Now by Chris Lattner · 17 years ago
  43. 1f683e9 fix off-by-one error by Chris Lattner · 17 years ago
  44. 94f6781 Fix clang -parse-ast-dump carbon.c by Chris Lattner · 17 years ago
  45. 6338135 rename sNames -> StmtClassInfo. Make lookups constant time. by Chris Lattner · 17 years ago
  46. f1120de by Steve Naroff · 17 years ago
  47. 5d79425 remove a dead argument by Chris Lattner · 17 years ago
  48. 46f93d0 implement codegen for real/imag. TODO: imag of non-complex. by Chris Lattner · 17 years ago
  49. dbb3697 Implement sema support for __real/__imag nodes. by Chris Lattner · 17 years ago
  50. 8297777 Added child_begin/child_end to all subclasses of Stmt in Stmt.h. All by Ted Kremenek · 17 years ago
  51. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  52. a66622a Added ExprCXX.cpp by Ted Kremenek · 17 years ago
  53. a758d09 Implementation of child_begin/child_end for C++ expressions. by Ted Kremenek · 17 years ago
  54. c10d33c Implemented child_begin/child_end for our current set of C++ expressions. by Ted Kremenek · 17 years ago
  55. 1237c67 Finished adding child_begin/child_end to all subclasses of Stmt in Expr.h. by Ted Kremenek · 17 years ago
  56. 9f5fa9b by Steve Naroff · 17 years ago
  57. 77ed8e4 Began implementing "child iterator" interface for Stmts and Exprs. Each by Ted Kremenek · 17 years ago
  58. 084f9ed by Steve Naroff · 17 years ago
  59. dfce2a5 print the computation type for compound assignment operators in dumps. by Chris Lattner · 17 years ago
  60. 7f02f72 completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  61. 566b6ce rename two files. by Chris Lattner · 17 years ago
  62. d0b1203 implement codegen of builtin_choose_expr for complex. by Chris Lattner · 17 years ago
  63. 4f5d414 stub out complex -> bool conversion. by Chris Lattner · 17 years ago
  64. fd90ac0 make this harder by Chris Lattner · 17 years ago
  65. 6bc1ade implement complex subtraction by Chris Lattner · 17 years ago
  66. 23b1cdb implement passing of complex and aggregates through call args. by Chris Lattner · 17 years ago
  67. b2137ae in the truncation case, make sure to propagate the sign correctly, this by Chris Lattner · 17 years ago
  68. bc60796 by Steve Naroff · 17 years ago
  69. 97c5156 fix a bug where we would type 0ULL as unsigned instead of unsigned long long by Chris Lattner · 17 years ago
  70. 296bf19 Pretty print as: "case sizeof x:" instead of: "case sizeofx:" by Chris Lattner · 17 years ago
  71. 602dafd sizeof(x) doesn't require x to be an i-c-e for sizeof to be an i-c-e. Thanks to Neil for pointing this out. by Chris Lattner · 17 years ago
  72. d4fdee3 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
  73. 419d25e add support for codegen of calls returning complex. by Chris Lattner · 17 years ago
  74. dd10e02 Remove a FIXME, allowing ++/-- on Complex types (a GCC extension). by Steve Naroff · 17 years ago
  75. befef2f moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
  76. 527fe23 by Steve Naroff · 17 years ago
  77. b5c13b0 Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
  78. 0471f5b finish off switch case overlap checking, adding support for by Chris Lattner · 17 years ago
  79. 861cf3e by Steve Naroff · 17 years ago
  80. edcc752 Refactored "getSubStmt" and "SubStmt" from the CaseStmt and DefaultStmt by Ted Kremenek · 17 years ago
  81. 6efc4d3 detect and diagnose empty case ranges: by Chris Lattner · 17 years ago
  82. 989d52d For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
  83. f752fcf Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
  84. 504927a Modified CFG to have explicit "Exit" pointer for exit block. This should by Ted Kremenek · 17 years ago
  85. 026473c Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
  86. 4988ae3 As suggested by Chris, use MatchRHSPunctuation instead of manually looking for a right parenthesis when parsing @encode() and @protocol(). by Anders Carlsson · 17 years ago
  87. 29b2cb1 Parse ObjC @protocol expressions. by Anders Carlsson · 17 years ago
  88. f334850 fix a segfault in cases where there are no cases. by Chris Lattner · 17 years ago
  89. b2ec9d6 report duplicate case values. TODO: report duplicate/overlapping ranges. by Chris Lattner · 17 years ago
  90. 99351fd this test is passing, though it is generating bogus code at the moment. by Chris Lattner · 17 years ago
  91. f4021e7 start checking case values of switch stmts more closely. Emit overflow by Chris Lattner · 17 years ago
  92. b2024b2 Update to match the API from LLVM mainline. by Chris Lattner · 17 years ago
  93. e389201 run .m files as tests by Chris Lattner · 17 years ago
  94. d818a71 Test that cocoa parses with -parse-noop. In the future by Chris Lattner · 17 years ago
  95. 4fa7afd by Steve Naroff · 17 years ago
  96. 31dcd3c Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  97. a5e7df5 by Steve Naroff · 17 years ago
  98. 7ef58fd by Steve Naroff · 17 years ago
  99. 8a29471 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  100. bf15b27 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago