Skip to content
  1. Nov 16, 2008
  2. Nov 14, 2008
    • Devang Patel's avatar
      Refactor code. · 8ada1d5d
      Devang Patel authored
      Strip debug information before stripping symbol names. 
      
      llvm-svn: 59328
      8ada1d5d
  3. Nov 13, 2008
  4. Nov 12, 2008
  5. Nov 11, 2008
  6. Nov 10, 2008
  7. Nov 09, 2008
    • Nuno Lopes's avatar
      fix leakage of ValueNumbering · 2e42927e
      Nuno Lopes authored
      llvm-svn: 58933
      2e42927e
    • Bill Wendling's avatar
      If the LHS of the FCMP is coming from a UIToFP instruction, then we don't want · 3f547be2
      Bill Wendling authored
      to generate signed ICMP instructions to replace the FCMP. This would violate
      the following:
      
      define i1 @test1(i32 %val) {
        %1 = uitofp i32 %val to double
        %2 = fcmp ole double %1, 0.000000e+00
        ret i1 %2
      }
      
      would be transformed into:
      
      define i1 @test1(i32 %val) {
        %1 = icmp slt i33 %val, 1
        ret i1 %1
      }
      
      which is obviously wrong. This patch modifes InstCombiner::FoldFCmp_IntToFP_Cst
      to handle when the LHS comes from UIToFP.
      
      llvm-svn: 58929
      3f547be2
  8. Nov 08, 2008
  9. Nov 07, 2008
  10. Nov 06, 2008
  11. Nov 05, 2008
Loading