Skip to content
  1. Feb 26, 2007
  2. Feb 06, 2007
  3. Feb 03, 2007
  4. Jan 31, 2007
  5. Jan 19, 2007
    • Reid Spencer's avatar
      For PR1043: · a94d394a
      Reid Spencer authored
      This is the final patch for this PR. It implements some minor cleanup
      in the use of IntegerType, to wit:
      1. Type::getIntegerTypeMask -> IntegerType::getBitMask
      2. Type::Int*Ty changed to IntegerType* from Type*
      3. ConstantInt::getType() returns IntegerType* now, not Type*
      
      This also fixes PR1120.
      
      Patch by Sheng Zhou.
      
      llvm-svn: 33370
      a94d394a
  6. Jan 13, 2007
  7. Jan 12, 2007
  8. Jan 11, 2007
  9. Dec 23, 2006
    • Reid Spencer's avatar
      For PR950: · 266e42b3
      Reid Spencer authored
      This patch removes the SetCC instructions and replaces them with the ICmp
      and FCmp instructions. The SetCondInst instruction has been removed and
      been replaced with ICmpInst and FCmpInst.
      
      llvm-svn: 32751
      266e42b3
  10. Dec 19, 2006
  11. Dec 06, 2006
  12. Nov 26, 2006
  13. Nov 02, 2006
    • Reid Spencer's avatar
      For PR786: · de46e484
      Reid Spencer authored
      Turn on -Wunused and -Wno-unused-parameter. Clean up most of the resulting
      fall out by removing unused variables. Remaining warnings have to do with
      unused functions (I didn't want to delete code without review) and unused
      variables in generated code. Maintainers should clean up the remaining
      issues when they see them. All changes pass DejaGnu tests and Olden.
      
      llvm-svn: 31380
      de46e484
  14. Sep 29, 2006
    • Chris Lattner's avatar
      · 6ab03f6a
      Chris Lattner authored
      Eliminate ConstantBool::True and ConstantBool::False.  Instead, provide
      ConstantBool::getTrue() and ConstantBool::getFalse().
      
      llvm-svn: 30665
      6ab03f6a
  15. Aug 30, 2006
  16. Aug 28, 2006
  17. Jul 19, 2006
  18. Jun 28, 2006
  19. Jun 26, 2006
  20. Jun 14, 2006
  21. Jun 12, 2006
  22. Jun 11, 2006
  23. Jun 09, 2006
  24. Mar 24, 2006
  25. Feb 23, 2006
  26. Feb 22, 2006
  27. Feb 18, 2006
  28. Feb 17, 2006
  29. Feb 16, 2006
  30. Feb 15, 2006
    • Chris Lattner's avatar
      Implement trivial unswitching for switch stmts. This allows us to trivial · fdff0bb4
      Chris Lattner authored
      unswitch this loop on 2 before sweating to unswitch on 1/3.
      
      void test4(int N, int i, int C, int*P, int*Q) {
        int j;
        for (j = 0; j < N; ++j) {
          switch (C) {                // general unswitching.
          default: P[i+j] = 0; break;
          case 1: Q[i+j] = 0; break;
          case 3: P[i+j] = Q[i+j]; break;
          case 2: break;              //  TRIVIAL UNSWITCH on C==2
          }
        }
      }
      
      llvm-svn: 26223
      fdff0bb4
Loading