1. a651e0e CFG bug fix: for sizeof(expressions), don't expand the control-flow by Ted Kremenek · 17 years ago
  2. 9a8385d Fixed bug in CFG::PopulateBlkExprMap where the ordering by Ted Kremenek · 17 years ago
  3. ecc04c9 Fixed bug in CFG construction where we did not properly handle the GCC by Ted Kremenek · 17 years ago
  4. d660322 Fixed bug in WalkaST_VisitDeclSubExprs where we failed to properly check if by Ted Kremenek · 17 years ago
  5. 8f54c1f Refactored CFG construction code that processes DeclStmts to use StmtIterator. by Ted Kremenek · 17 years ago
  6. 7a9d9d7 Modified CFG pretty-printing to directly use the (reverse) body by Ted Kremenek · 17 years ago
  7. c266acd remove dead #include by Chris Lattner · 17 years ago
  8. 11e7218 Migrated LiveVariables and UninitializedVariables to now use the by Ted Kremenek · 17 years ago
  9. 63f5887 CFG objects now internally store a (lazily created) map from block-level by Ted Kremenek · 17 years ago
  10. d48ade6 Removed "hasImplicitControlFlow" from class CFG, and moved it to class Stmt by Ted Kremenek · 17 years ago
  11. 271f1a6 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 17 years ago
  12. 322f58d Fixed two bugs in CFG construction: by Ted Kremenek · 17 years ago
  13. 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
  14. 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
  15. 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
  16. f874c13 fix warning. by Chris Lattner · 17 years ago
  17. 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  18. bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  19. 155383b Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
  20. f50ec10 Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
  21. 9438252 Moved tracking of CFG block IDs into the CFG class. by Ted Kremenek · 17 years ago
  22. 60266e8 Fixed missing '(' and ')' characters in (CFG) pretty-printing of by Ted Kremenek · 17 years ago
  23. aeddbf6 Added better pretty printing in CFGs for __builtin_choose_expr by Ted Kremenek · 17 years ago
  24. 1c29bba Further cleanups in CFG printing for comma expressions, statement expressions, and indirect gotos. by Ted Kremenek · 17 years ago
  25. 805e9a8 Cleanups for printing the terminators of CFGBlocks for "?", "||", and "&&" operators. by Ted Kremenek · 17 years ago
  26. 42a509f Added "PrinterHelper" interface (include/AST/PrinterHelper) that can by Ted Kremenek · 17 years ago
  27. 49a436d Added support for __builtin_choose_expr (ChooseExpr) in CFGs. by Ted Kremenek · 17 years ago
  28. 535bb20 Minor cleanups to pretty-printing for loops in CFGs. by Ted Kremenek · 17 years ago
  29. 29ccaa1 Fixed a bug in constructing CFG blocks for case statement fall-through by Ted Kremenek · 17 years ago
  30. af603f7 Fixed bug in CFG construction where we failed to handle loop bodies with by Ted Kremenek · 17 years ago
  31. 16e4dc8 Fixed bug in CFG construction involving use of labels and "empty" by Ted Kremenek · 17 years ago
  32. b6f7b72 Fixed bug where the CFG would fail to build when an 'if' statement had by Ted Kremenek · 17 years ago
  33. 9cffe73 Added an (optional) explicit "Label" statement to CFGBlock. If a by Ted Kremenek · 17 years ago
  34. 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
  35. 19bb356 Added support for indirect-gotos (GCC extension) in source-level CFGs. by Ted Kremenek · 17 years ago
  36. 15c27a8 Added support for GCC-style statement expressions in source-level CFGs. by Ted Kremenek · 17 years ago
  37. b49e1aa Added support for comma expressions and DeclStmts which may have by Ted Kremenek · 17 years ago
  38. 7926f7c Removed special-casing in CFG construction for ParenExprs. by Ted Kremenek · 17 years ago
  39. 0b1d9b7 Added support for short-circuit '&&' and '||' operators in source-level CFGs. by Ted Kremenek · 17 years ago
  40. 9da2fb7 Implemented support for ternary "?" operators in source-level CFGs. by Ted Kremenek · 17 years ago
  41. 49af7cb Changes to CFGBuilder: by Ted Kremenek · 17 years ago
  42. d4fdee3 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
  43. befef2f moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
  44. b5c13b0 Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
  45. 989d52d For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
  46. f752fcf Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
  47. 026473c Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
  48. 31dcd3c Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  49. 8a29471 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  50. bf15b27 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
  51. 2bac4ea Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago
  52. e8ee26b Added CFG support for: for loops by Ted Kremenek · 17 years ago
  53. 4a2b8a1 Changed data structure recording the CFG blocks that need to be backpatched by Ted Kremenek · 17 years ago
  54. 0cebe3e Added CFG support for gotos and labels. by Ted Kremenek · 17 years ago
  55. c310e93 Converted CFGBuilder to use StmtVisitor instead of doing a switch by Ted Kremenek · 17 years ago
  56. fddd518 Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs. by Ted Kremenek · 17 years ago