Skip to content
  1. Nov 30, 2004
    • Chris Lattner's avatar
      If we have something like this: · 389cfac0
      Chris Lattner authored
        if (x) {
          code
          ...
        } else {
          code
          ...
        }
      
      Turn it into:
      
        code
        if (x) {
          ...
        } else {
          ...
        }
      
      This reduces code size and in some common cases allows us to completely
      eliminate the conditional.  This turns several if/then/else blocks in loops
      into straightline code in 179.art, turning the loops into single basic blocks
      (good for modsched even!).
      
      Maybe now brg will leave me alone ;-)
      
      llvm-svn: 18366
      389cfac0
    • Chris Lattner's avatar
      Remove extraneous namespacification. In particular, don't define... · e0c207d2
      Chris Lattner authored
      Remove extraneous namespacification.  In particular, don't define llvm::llvm::createInternalGlobalMapperPass
      
      llvm-svn: 18365
      e0c207d2
  2. Nov 29, 2004
Loading