diff options
author | aurel32 | 2009-04-10 23:27:15 +0200 |
---|---|---|
committer | aurel32 | 2009-04-10 23:27:15 +0200 |
commit | ecbb5ea1041d2894f5efb9317acd519c4fd81ad5 (patch) | |
tree | 72cd66d31fdd2c87d191f3be9c84f4f72a2b20a7 /tests/alpha/test-ovf.c | |
parent | Clean up rc4030 init function (diff) | |
download | qemu-ecbb5ea1041d2894f5efb9317acd519c4fd81ad5.tar.gz qemu-ecbb5ea1041d2894f5efb9317acd519c4fd81ad5.tar.xz qemu-ecbb5ea1041d2894f5efb9317acd519c4fd81ad5.zip |
target-alpha: overflow condition for sublv and subqv
The conditions to detect overflow in sub operations was wrong.
This patch is necessary to boot Tru64.
Signed-off-by: Tristan Gingold <gingold@adacore.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7073 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/alpha/test-ovf.c')
-rw-r--r-- | tests/alpha/test-ovf.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/alpha/test-ovf.c b/tests/alpha/test-ovf.c new file mode 100644 index 0000000000..01c80e7525 --- /dev/null +++ b/tests/alpha/test-ovf.c @@ -0,0 +1,29 @@ +static long test_subqv (long a, long b) +{ + long res; + + asm ("subq/v %1,%2,%0" + : "=r" (res) : "r" (a), "r" (b)); + return res; +} +static struct { + long (*func)(long, long); + long a; + long b; + long r; +} vectors[] = + { + {test_subqv, 0, 0x7d54000, 0xfffffffff82ac000L} + }; + +int main (void) +{ + int i; + + for (i = 0; i < sizeof (vectors)/sizeof(vectors[0]); i++) + if ((*vectors[i].func)(vectors[i].a, vectors[i].b) != vectors[i].r) { + write(1, "Failed\n", 7); + } + write(1, "OK\n", 3); + return 0; +} |