1. ae2a98c Minor CFG optimization: don't create separate block-level expressions for DeclStmt initializers when the initializer is a literal. by Ted Kremenek · 16 years ago
  2. b3d914b When AST-dumping ObjCMessageExpr, output the selector. by Ted Kremenek · 16 years ago
  3. 2e5f54a Removed VarDecl::hasStaticStorage() (redundant with hasGlobalStorage()) by Ted Kremenek · 16 years ago
  4. 0d99ecf Fixed edge-case in CFG construction where goto jumps would not always get by Ted Kremenek · 16 years ago
  5. 5482713 Bug fix in CFG construction: Properly register the loop head as the implicit by Ted Kremenek · 16 years ago
  6. a9d996d Fixed CFG construction bug that occurred when a condition for a loop spanned by Ted Kremenek · 16 years ago
  7. f4e15fc Do include ParenExpr in the CFG; only include their subexpression. by Ted Kremenek · 16 years ago
  8. 50dd289 add parsing, ast building and pretty printing support for C++ throw expressions. by Chris Lattner · 16 years ago
  9. d34066c Fixed bug in CFG construction when a CompoundStmt ended with a NullStmt. by Ted Kremenek · 16 years ago
  10. 56cd7e3 Fix a little typo... per cfe-dev, this was apparently causing test by Eli Friedman · 16 years ago
  11. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 16 years ago
  12. 10c5fa3 Minor code cleanup. by Eli Friedman · 16 years ago
  13. 471733d Patch from Argiris Kirtzidis: by Ted Kremenek · 16 years ago
  14. 3513e13 Change variable name to Tq (from TQ) by Gabor Greif · 16 years ago
  15. a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 16 years ago
  16. f46699c Alternate address spaces work: by Chris Lattner · 16 years ago
  17. a0992b6 by Steve Naroff · 16 years ago
  18. 8af226a More bitfield improvements. by Anders Carlsson · 16 years ago
  19. 64a31ef Fix bug where we would report the wrong value for __alignof__ with an expr that is not a type. by Anders Carlsson · 16 years ago
  20. d3f2f79 Implemnt isVariablyModifiedType correctly. by Eli Friedman · 16 years ago
  21. 042c4e7 Better handling of the aligned attribute. by Anders Carlsson · 16 years ago
  22. eb7adf3 More comments from Chris. by Anders Carlsson · 16 years ago
  23. 6a24acb Make sizeof and __alignof work correctly with packed structs. by Anders Carlsson · 16 years ago
  24. b0dd268 Store attributes in a global hash map instead. by Anders Carlsson · 16 years ago
  25. c5773c4 Split out incomplete arrays from VariableArrayType into by Eli Friedman · 16 years ago
  26. 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 16 years ago
  27. f78915f Get rid of AttributeList in the AST and use the new Attr class instead by Anders Carlsson · 16 years ago
  28. d574052 Partial fix for struct compatibility; there's still something messy by Eli Friedman · 16 years ago
  29. eef5a9a When creating the CFGBlocks for a switch statement, we now have the "default" by Ted Kremenek · 16 years ago
  30. 295222c Fixed bug in CFG construction when processing switch statements that contain no by Ted Kremenek · 16 years ago
  31. 4b3f9b3 Fix a minor bug in isNullPointerConstant triggered by the linux tgmath.h. by Eli Friedman · 16 years ago
  32. 56f3494 Move IgnoreParenCasts to be a method on Expr. by Chris Lattner · 16 years ago
  33. bab9696 Make typechecking for enum+int compatibility stricter. by Eli Friedman · 16 years ago
  34. fd888a5 Add wchar_t type to ASTContext. Will be needed for wide strings, since by Eli Friedman · 16 years ago
  35. 4c721d3 Fix type compatibility between constant and variable arrays. by Eli Friedman · 16 years ago
  36. acb818a by Steve Naroff · 16 years ago
  37. 75ceedf by Steve Naroff · 16 years ago
  38. dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 16 years ago
  39. 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 16 years ago
  40. 61900f0 Handle top-level asm declarations. by Anders Carlsson · 16 years ago
  41. d073987 Minor reordering of the serialization of the fields of MemberExpr to result by Ted Kremenek · 16 years ago
  42. 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 16 years ago
  43. 75afb58 Fix the codegen of structs with flexible array members. by Eli Friedman · 16 years ago
  44. 4e92acf Be a bit stricter about array type compatibility. by Eli Friedman · 16 years ago
  45. 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 16 years ago
  46. dfab34a Handle simple asm statements correctly. by Anders Carlsson · 16 years ago
  47. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 16 years ago
  48. ff98102 For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) by Ted Kremenek · 17 years ago
  49. bcba201 Make CallExpr::isBuiltinConstantExpr slightly more efficient. by Anders Carlsson · 17 years ago
  50. c4f8e8b by Steve Naroff · 17 years ago
  51. a292585 Added method "printTerminator" to CFGBlock so that external clients can by Ted Kremenek · 17 years ago
  52. 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 17 years ago
  53. f69cc5d by Steve Naroff · 17 years ago
  54. 78a677b Fixed misc. issues raised by Chris L. on @synchronized implementation. by Fariborz Jahanian · 17 years ago
  55. db6ed17 move some constructors out of line and fix indentation in ObjCAtThrowStmt::getSourceRange. by Chris Lattner · 17 years ago
  56. a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
  57. b7e6bd7 - Hooked up deserialization of ObjCAtSynchronizedStmt Stmt::Create(). by Ted Kremenek · 17 years ago
  58. fa3ee8e AST for @synchronized. by Fariborz Jahanian · 17 years ago
  59. 2565eef by Steve Naroff · 17 years ago
  60. c385c90 Bunch of type defs, etc. for @synchronized. by Fariborz Jahanian · 17 years ago
  61. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
  62. ba03eda by Steve Naroff · 17 years ago
  63. 33d4aab Added back logic in patch r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) with the addition of by Ted Kremenek · 17 years ago
  64. e2dcd78 Reverting r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) until by Ted Kremenek · 17 years ago
  65. bf75538 fix isIntegerConstantExpr evaluation of unary !. by Chris Lattner · 17 years ago
  66. 7accba0 When adding assignment expressions to the set of block-level expressions, only by Ted Kremenek · 17 years ago
  67. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 17 years ago
  68. 9412d68 by Steve Naroff · 17 years ago
  69. 269b10d Missing ObjC stuff. Patch by Mike Stump. by Fariborz Jahanian · 17 years ago
  70. 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
  71. 5c06a69 by Steve Naroff · 17 years ago
  72. 8694674 Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This by Ted Kremenek · 17 years ago
  73. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  74. faf5e77 Renamed getSynthesizedSelectorSize to getSynthesizedMethodSize. Compute method name by Fariborz Jahanian · 17 years ago
  75. 4e99a5f Added method Expr::IgnoreParens(), which returns the first non-ParenExpr Expr*. by Ted Kremenek · 17 years ago
  76. 847794a Computed length of a __func__ identifier used in an objective-c method correctly, by Fariborz Jahanian · 17 years ago
  77. 494783a by Steve Naroff · 17 years ago
  78. 67c49e8 by Steve Naroff · 17 years ago
  79. 02f62a9 by Steve Naroff · 17 years ago
  80. 4cdec1c by Steve Naroff · 17 years ago
  81. 3f0c5ad Teach Type::isIntegerType() about GCC's __complex__ integer extensions... by Steve Naroff · 17 years ago
  82. 34bc18b When serializing CompoundLiteralExpr, serialize out the file scope flag before by Ted Kremenek · 17 years ago
  83. e9b1219 by Steve Naroff · 17 years ago
  84. bdd30c2 Change uses of std::cerr/std::cout to llvm::Lcerr/llvm::cout, and remove by Ted Kremenek · 17 years ago
  85. aa58f00 by Steve Naroff · 17 years ago
  86. 1adb883 Fix ASTContext::typesAreCompatible when analyzing a function type with by Chris Lattner · 17 years ago
  87. aaffbf7 by Steve Naroff · 17 years ago
  88. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  89. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  90. 83c01da Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge by Ted Kremenek · 17 years ago
  91. d0091aa by Steve Naroff · 17 years ago
  92. 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
  93. 6f81811 by Steve Naroff · 17 years ago
  94. 4a74678 by Steve Naroff · 17 years ago
  95. c0a356b Fix isIntegerConstantExpr to compare against zero for casts to bool instead of by Chris Lattner · 17 years ago
  96. b8f13a8 by Steve Naroff · 17 years ago
  97. 6fa9b88 Added VISIBILITY_HIDDEN to classes/structs in anonymous namespace. by Ted Kremenek · 17 years ago
  98. c5ae5cf Verify/add code to make sure types passed to interfaceTypesAreCompatible by Fariborz Jahanian · 17 years ago
  99. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  100. 205712a Minor tweak to serialization of ObjcForCollectionStmt: the three owned pointers by Ted Kremenek · 17 years ago