summaryrefslogtreecommitdiffstats
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
commit5c61cbeb582be4cc0267247da2f245691de7dd41 (patch)
tree98b95dab0f06502fa75c3d086716de177a902ce2
parenta654df84e6a4f005672a6282e3cd05c2aa91aea9 (diff)
downloadbcm5719-llvm-5c61cbeb582be4cc0267247da2f245691de7dd41.tar.gz
bcm5719-llvm-5c61cbeb582be4cc0267247da2f245691de7dd41.zip
Fix this test on windows. When running on windows we print
double 0.000000e+000 instead of double 0.000000e+00 llvm-svn: 99932
-rw-r--r--clang/test/CodeGen/regparm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/regparm.c b/clang/test/CodeGen/regparm.c
index 43b1da61ee9..2b5bbfc1a36 100644
--- a/clang/test/CodeGen/regparm.c
+++ b/clang/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);
}
OpenPOWER on IntegriCloud