Add tests for floating point remainder elimination

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2461 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-05-03 20:16:29 +00:00
parent 8e122e1148
commit 6a7cd2206b

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
}