1. 968b0e0 these implicit conversions are now explicit :) by Chris Lattner · 17 years ago
  2. b149706 remove uses of EmitConversion by Chris Lattner · 17 years ago
  3. 2bb17e4 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  4. 4e05d1e refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  5. d4c473b steve's recent changes fixed this bogus warning. by Chris Lattner · 17 years ago
  6. a754990 Break the assumption that any sort of scope (e.g. a loop scope) can by Chris Lattner · 17 years ago
  7. 5f5cd4e remove some dead enum values. by Chris Lattner · 17 years ago
  8. 97d7183 Implement casts from scalar -> complex and complex->complex. by Chris Lattner · 17 years ago
  9. a16e42d require that operands to __real/__imag are complex or arithmetic. This by Chris Lattner · 17 years ago
  10. db8a6c9 implement codegen of __imag of a scalar. Our impl doesn't suffer from by Chris Lattner · 17 years ago
  11. 64a113b Make initialization of complex vars work. by Chris Lattner · 17 years ago
  12. 0dc11f6 fix codegen of pre/post inc/dec of a pointer. by Chris Lattner · 17 years ago
  13. a52c889 tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  14. 7903e49 int X[] isn't a VLA. This improves support for stdio.h on darwin. by Chris Lattner · 17 years ago
  15. 0b80eee Make some diags EXTENSION so they are errors with pedantic errors by Neil Booth · 17 years ago
  16. 2489637 implement rudimentary union layout support. by Chris Lattner · 17 years ago
  17. 42deafb Why didn't gcc catch this? :( by Chris Lattner · 17 years ago
  18. 783a78f Don't make unknown builtins fatal errors yet. by Chris Lattner · 17 years ago
  19. c281b85 remove a bunch of dead code by Chris Lattner · 17 years ago
  20. c7ac5ed fix a bug introduced by the recent childification of ForStmt. by Chris Lattner · 17 years ago
  21. 987058a Make parse-ast-print print the storage class and inline specifier of functions. by Chris Lattner · 17 years ago
  22. f38cbc7 null pointers don't get an extra newline. by Chris Lattner · 17 years ago
  23. b1f5ebc implement codegen for complex literals. by Chris Lattner · 17 years ago
  24. 1de66eb add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  25. c04a0bd 1.0 is double, 1.0F is a float. by Chris Lattner · 17 years ago
  26. ae71e48 1) refactor some code. by Chris Lattner · 17 years ago
  27. 254f3bc merge checkrelational and checkequality into CheckCompareOperands, by Chris Lattner · 17 years ago
  28. 22be842 Cases like this: char *C; C != ((void*)0); by Chris Lattner · 17 years ago
  29. 42e05d3 new testcase by Chris Lattner · 17 years ago
  30. 42330c3 The new correct compound assignment operators exposed a bug in codegen. by Chris Lattner · 17 years ago
  31. b2f9f55 by Steve Naroff · 17 years ago
  32. 9c13572 read and ignore the body of a namespace. by Chris Lattner · 17 years ago
  33. c640c3f Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  34. ac5d4f1 Give CXXBoolLiteralExpr a type (all expressions need a valid type). by Steve Naroff · 17 years ago
  35. f7b2e55 refactor enough of the top-level parsing logic to parse and by Chris Lattner · 17 years ago
  36. 7bdc85d C++ explicitly allows an empty source file. by Chris Lattner · 17 years ago
  37. e65acc1 Fix the test/Sema/format-strings.c regression. This code should be refactored. by Chris Lattner · 17 years ago
  38. f493756 reenable this. by Chris Lattner · 17 years ago
  39. da05040 Fix the regression on test/Sema/cfstring.c by Chris Lattner · 17 years ago
  40. 9797d52 test the parser only, not sema. by Chris Lattner · 17 years ago
  41. 06078d2 Split the ASTNode out for compound assignments out from binary operators. Now by Chris Lattner · 17 years ago
  42. 9c0da3b fix off-by-one error by Chris Lattner · 17 years ago
  43. d10426a Fix clang -parse-ast-dump carbon.c by Chris Lattner · 17 years ago
  44. 603bf12 rename sNames -> StmtClassInfo. Make lookups constant time. by Chris Lattner · 17 years ago
  45. 0f32f43 by Steve Naroff · 17 years ago
  46. 5110ad5 remove a dead argument by Chris Lattner · 17 years ago
  47. 01211af implement codegen for real/imag. TODO: imag of non-complex. by Chris Lattner · 17 years ago
  48. 03931a7 Implement sema support for __real/__imag nodes. by Chris Lattner · 17 years ago
  49. 51be056 Added child_begin/child_end to all subclasses of Stmt in Stmt.h. All by Ted Kremenek · 17 years ago
  50. 660e31d Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  51. 744ebfe Added ExprCXX.cpp by Ted Kremenek · 17 years ago
  52. fc7b6f7 Implementation of child_begin/child_end for C++ expressions. by Ted Kremenek · 17 years ago
  53. 3cb01e2 Implemented child_begin/child_end for our current set of C++ expressions. by Ted Kremenek · 17 years ago
  54. 9fdc8a9 Finished adding child_begin/child_end to all subclasses of Stmt in Expr.h. by Ted Kremenek · 17 years ago
  55. 8f70836 by Steve Naroff · 17 years ago
  56. e4acb9c Began implementing "child iterator" interface for Stmts and Exprs. Each by Ted Kremenek · 17 years ago
  57. d30e193 by Steve Naroff · 17 years ago
  58. 855e3d7 print the computation type for compound assignment operators in dumps. by Chris Lattner · 17 years ago
  59. 9fba49a completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  60. 820dce8 rename two files. by Chris Lattner · 17 years ago
  61. 5337568 implement codegen of builtin_choose_expr for complex. by Chris Lattner · 17 years ago
  62. 5ac222c stub out complex -> bool conversion. by Chris Lattner · 17 years ago
  63. 1b4429a make this harder by Chris Lattner · 17 years ago
  64. 41c0c85 implement complex subtraction by Chris Lattner · 17 years ago
  65. 348c8a2 implement passing of complex and aggregates through call args. by Chris Lattner · 17 years ago
  66. 5c03960 in the truncation case, make sure to propagate the sign correctly, this by Chris Lattner · 17 years ago
  67. 71e4bdf by Steve Naroff · 17 years ago
  68. 98540b6 fix a bug where we would type 0ULL as unsigned instead of unsigned long long by Chris Lattner · 17 years ago
  69. 2b97b09 Pretty print as: "case sizeof x:" instead of: "case sizeofx:" by Chris Lattner · 17 years ago
  70. 5a9b624 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
  71. 7354391 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
  72. 84363b7 add support for codegen of calls returning complex. by Chris Lattner · 17 years ago
  73. 6acc0f4 Remove a FIXME, allowing ++/-- on Complex types (a GCC extension). by Steve Naroff · 17 years ago
  74. d6e5060 moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
  75. a7f6278 by Steve Naroff · 17 years ago
  76. e809ebf Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
  77. 0ab833c finish off switch case overlap checking, adding support for by Chris Lattner · 17 years ago
  78. 87c329f by Steve Naroff · 17 years ago
  79. 320956f Refactored "getSubStmt" and "SubStmt" from the CaseStmt and DefaultStmt by Ted Kremenek · 17 years ago
  80. 7443e0f detect and diagnose empty case ranges: by Chris Lattner · 17 years ago
  81. 7372bb2 For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
  82. 95cc35c Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
  83. ff2a8c5 Modified CFG to have explicit "Exit" pointer for exit block. This should by Ted Kremenek · 17 years ago
  84. 4db5b45 Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
  85. 92faeb8 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
  86. 2996b4e Parse ObjC @protocol expressions. by Anders Carlsson · 17 years ago
  87. 2b1b9a8 fix a segfault in cases where there are no cases. by Chris Lattner · 17 years ago
  88. 1a4066d report duplicate case values. TODO: report duplicate/overlapping ranges. by Chris Lattner · 17 years ago
  89. ce421c8 this test is passing, though it is generating bogus code at the moment. by Chris Lattner · 17 years ago
  90. 3429a81 start checking case values of switch stmts more closely. Emit overflow by Chris Lattner · 17 years ago
  91. 9b7cae4 Update to match the API from LLVM mainline. by Chris Lattner · 17 years ago
  92. 39c851c run .m files as tests by Chris Lattner · 17 years ago
  93. 21ac6ef Test that cocoa parses with -parse-noop. In the future by Chris Lattner · 17 years ago
  94. a8ee226 by Steve Naroff · 17 years ago
  95. 0baf7c0 Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  96. 228ed36 by Steve Naroff · 17 years ago
  97. 72f17fb by Steve Naroff · 17 years ago
  98. f308d37 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  99. f511d67 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
  100. bec06e8 Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago