Merge "Put the right number of Ls after 64-bit constants."

This commit is contained in:
Elliott Hughes 2013-02-13 04:20:43 +00:00 committed by Gerrit Code Review
commit baf2c09f3f

View File

@ -37,7 +37,7 @@ double double_subnormal() {
double d;
uint64_t i;
} u;
u.i = 0x000fffffffffffffL;
u.i = 0x000fffffffffffffLL;
return u.d;
}