From 366ed48c52dc813c82c3d780ee35a195ec05b3f4 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 30 Mar 2010 21:19:02 +0000 Subject: [PATCH] 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 --- test/CodeGen/regparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.50.1