This commit is contained in:
bellard
2004-10-23 22:52:58 +00:00
parent eb79471184
commit bb07bf31aa
4 changed files with 23 additions and 23 deletions

View File

@ -1599,6 +1599,15 @@ void longlong_test(void)
printf("%lld\n", value(&a));
}
lloptest(0x80000000, 0);
/* another long long spill test */
{
long long *p, v;
v = 1;
p = &v;
p[0]++;
printf("%lld\n", *p);
}
}
void vprintf1(const char *fmt, ...)