forked from OSchip/llvm-project
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:
parent
a654df84e6
commit
5c61cbeb58
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue