Fix this test on windows. When running on windows we print

double 0.000000e+000
instead of
double 0.000000e+00

llvm-svn: 99932
This commit is contained in:
Rafael Espindola 2010-03-30 21:19:02 +00:00
parent a654df84e6
commit 5c61cbeb58
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ reduced(char b, double c, foo* d, double e, int f) {
int
main(void) {
// CHECK: call void @reduced(i8 signext inreg 0, double 0.000000e+00, %struct.anon* inreg null, double 0.000000e+00, i32 0)
// CHECK: call void @reduced(i8 signext inreg 0, {{.*}} %struct.anon* inreg null
reduced(0, 0.0, 0, 0.0, 0);
}