diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-30 21:19:02 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-03-30 21:19:02 +0000 |
commit | 5c61cbeb582be4cc0267247da2f245691de7dd41 (patch) | |
tree | 98b95dab0f06502fa75c3d086716de177a902ce2 | |
parent | a654df84e6a4f005672a6282e3cd05c2aa91aea9 (diff) | |
download | bcm5719-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.c | 2 |
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); } |