aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-03-30 21:19:02 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-03-30 21:19:02 +0000
commit366ed48c52dc813c82c3d780ee35a195ec05b3f4 (patch)
treec3c19be60488d5e220ceae3f9e24e94944f71c29
parent3b5caa20652c43d00229bac972b78bee44a0ee9f (diff)
Fix this test on windows. When running on windows we print
double 0.000000e+000 instead of double 0.000000e+00 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99932 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/regparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/regparm.c b/test/CodeGen/regparm.c
index 43b1da61ee..2b5bbfc1a3 100644
--- a/test/CodeGen/regparm.c
+++ b/test/CodeGen/regparm.c
@@ -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);
}