64 bit support

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2019 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2006-06-25 18:28:12 +00:00
parent 26a76461f2
commit 4f4fbf77ad
1 changed files with 4 additions and 1 deletions

View File

@ -1584,8 +1584,11 @@ static target_long expr_unary(void)
n = 0;
break;
default:
/* XXX: 64 bit version */
#if TARGET_LONG_BITS == 64
n = strtoull(pch, &p, 0);
#else
n = strtoul(pch, &p, 0);
#endif
if (pch == p) {
expr_error("invalid char in expression");
}