1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Add tests for floating point remainder elimination

llvm-svn: 2461
This commit is contained in:
Chris Lattner 2002-05-03 20:16:29 +00:00
parent 36afb8ee65
commit bc361e36af

View File

@ -15,3 +15,12 @@ int "test2"() {
ret int %R
}
float "test3"() {
%R = rem float 12.45, 123.213
ret float %R
}
double "test4"() {
%R = rem double 312.20213123, 12.3333412
ret double %R
}