]> granicus.if.org Git - clang/commitdiff
Fix this test on windows. When running on windows we print
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 30 Mar 2010 21:19:02 +0000 (21:19 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 30 Mar 2010 21:19:02 +0000 (21:19 +0000)
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

index 43b1da61ee9004b48418bf751f4ae82d88abc593..2b5bbfc1a367e416e5c5c25544190bfd35b5f476 100644 (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);
 }