mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c3793d33d1
llvm-svn: 36012
15 lines
379 B
LLVM
15 lines
379 B
LLVM
; Test some floating point casting cases
|
|
; RUN: llvm-upgrade %s -o - | llvm-as | opt -instcombine | llvm-dis | notcast
|
|
; RUN: llvm-upgrade %s -o - | llvm-as | opt -instcombine | llvm-dis | \
|
|
; RUN: egrep {ret i8 \(-1\)\|\(255\)}
|
|
|
|
sbyte %test1() {
|
|
%x = fptoui float 255.0 to sbyte
|
|
ret sbyte %x
|
|
}
|
|
|
|
ubyte %test2() {
|
|
%x = fptosi float -1.0 to ubyte
|
|
ret ubyte %x
|
|
}
|