Skip to content
  1. Nov 08, 2004
  2. Nov 03, 2004
  3. Oct 31, 2004
  4. Oct 30, 2004
    • Chris Lattner's avatar
      Fix some more problems where we called getOffset before getNode() · c76fef12
      Chris Lattner authored
      llvm-svn: 17358
      c76fef12
    • Chris Lattner's avatar
      Fix three bugs: · 8aa0bafe
      Chris Lattner authored
       1. Calls to external global VARIABLES should not be treated as a call to an
          external function
       2. Efficiently deleting an element from a vector by using std::swap with
          the back, then pop_back is NOT a good way to keep the vector sorted.
       3. Our hope of having stuff get deleted by making them redundant just won't
          work.  In particular, if we have three calls in sequence that should be
          merged: A, B, C   first we unify B into A.  To be sure that they appeared
          identical (so B would be erased) we set B = A.  On the next step, we
          unified C into A and set C = A.  Unfortunately, this is no guarantee that
          C = B, so we would fail to delete the dead call.  Switch to a more
          explicit scheme.
      
      llvm-svn: 17357
      8aa0bafe
    • Chris Lattner's avatar
      Fix more undefined behavior · bc740090
      Chris Lattner authored
      llvm-svn: 17356
      bc740090
    • Chris Lattner's avatar
      * Add a method · ba96f0fd
      Chris Lattner authored
      * change some uses of NH.getNode() in a bool context to use !NH.isNull()
      * Fix a bunch of places where we depended on the (undefined) order of
        evaluation of arguments to function calls to ensure that getNode() was
        called before getOffset().  In practice, this was NOT happening.
      
      llvm-svn: 17354
      ba96f0fd
  5. Oct 28, 2004
  6. Oct 26, 2004
  7. Oct 22, 2004
  8. Oct 19, 2004
  9. Oct 16, 2004
  10. Oct 13, 2004
  11. Oct 11, 2004
  12. Oct 10, 2004
  13. Oct 07, 2004
  14. Oct 06, 2004
  15. Sep 20, 2004
  16. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  17. Aug 02, 2004
  18. Jul 29, 2004
  19. Jul 21, 2004
  20. Jul 18, 2004
    • Reid Spencer's avatar
      bug 122: · 30d69a5a
      Reid Spencer authored
      - Replace ConstantPointerRef usage with GlobalValue usage
      - Minimize redundant isa<GlobalValue> usage
      - Correct isa<Constant> for GlobalValue subclass
      
      llvm-svn: 14942
      30d69a5a
  21. Jul 16, 2004
  22. Jul 15, 2004
  23. Jul 08, 2004
  24. Jul 07, 2004
  25. Jul 04, 2004
  26. Jun 28, 2004
  27. Jun 23, 2004
  28. Jun 22, 2004
Loading