-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
Labels
Description
| Bugzilla Link | 6745 |
| Resolution | FIXED |
| Resolved on | Mar 21, 2011 23:16 |
| Version | trunk |
| OS | Windows XP |
| Blocks | llvm/llvm-bugzilla-archive#9099 |
| Reporter | LLVM Bugzilla Contributor |
| CC | @Bigcheese,@efriedma-quic,@ismail |
Extended Description
I don't have a windows machine to test on, but it looks like we print 0.0 as "double 0.000000e+00" on linux and as "double 0.000000e+000" on windows.
Possible testcase:
void foo(double a);
void bar(void) {
foo(0.0);
}