Home | History | Annotate | Download | only in InstCombine
      1 ; Test some floating point casting cases
      2 ; RUN: opt < %s -instcombine -S | FileCheck %s
      3 
      4 define i8 @test1() {
      5         %x = fptoui float 2.550000e+02 to i8            ; <i8> [#uses=1]
      6         ret i8 %x
      7 ; CHECK: ret i8 -1
      8 }
      9 
     10 define i8 @test2() {
     11         %x = fptosi float -1.000000e+00 to i8           ; <i8> [#uses=1]
     12         ret i8 %x
     13 ; CHECK: ret i8 -1
     14 }
     15 
     16