Skip to content
  1. Jul 11, 2006
  2. Jun 30, 2006
  3. Jun 29, 2006
  4. Jun 28, 2006
  5. Jun 27, 2006
    • Reid Spencer's avatar
      For PR801: · ee7eaa25
      Reid Spencer authored
      Refactor the Graph writing code to use a common implementation which is
      now in lib/Support/GraphWriter.cpp. This completes the PR.
      
      Patch by Anton Korobeynikov. Thanks, Anton!
      
      llvm-svn: 28925
      ee7eaa25
  6. Jun 23, 2006
  7. Jun 20, 2006
  8. Jun 19, 2006
  9. Jun 16, 2006
  10. Jun 15, 2006
  11. Jun 14, 2006
  12. Jun 12, 2006
  13. Jun 08, 2006
  14. Jun 05, 2006
    • Reid Spencer's avatar
      For PR798: · 614cb2ff
      Reid Spencer authored
      Provide GraphViz support for MingW32. Patch provided by Anton Korobeynikov
      
      llvm-svn: 28688
      614cb2ff
    • Reid Spencer's avatar
      For PR798: · 7c77323e
      Reid Spencer authored
      Add support for Graphviz. Patch contributed by Anton Korobeynikov.
      
      llvm-svn: 28684
      7c77323e
  15. Jun 01, 2006
  16. May 31, 2006
  17. May 30, 2006
  18. May 27, 2006
    • Chris Lattner's avatar
      Fix a nasty dag combiner bug that caused nondeterminstic crashes (MY FAVORITE!): · 8f872d20
      Chris Lattner authored
      SimplifySelectOps would eliminate a Select, delete it, then return true.
      
      The clients would see that it did something and return null.
      
      The top level would see a null return, and decide that nothing happened,
      proceeding to process the node in other ways: boom.
      
      The fix is simple: clients of SimplifySelectOps should return the select
      node itself.
      
      In order to catch really obnoxious boogs like this in the future, add an
      assert that nodes are not deleted.  We do this by checking for a sentry node
      type that the SDNode dtor sets when a node is destroyed.
      
      llvm-svn: 28514
      8f872d20
    • Evan Cheng's avatar
      Make CALL node consistent with RET node. Signness of value has type MVT::i32 · 21dee4e0
      Evan Cheng authored
      instead of MVT::i1. Either is fine except MVT::i32 is probably a legal type
      for most (if not all) platforms while MVT::i1 is not.
      
      llvm-svn: 28511
      21dee4e0
Loading