diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-10 21:27:15 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-10 21:27:15 +0000 |
commit | ecbb5ea1041d2894f5efb9317acd519c4fd81ad5 (patch) | |
tree | 72cd66d31fdd2c87d191f3be9c84f4f72a2b20a7 /tests/alpha/Makefile | |
parent | 68238a9e90708740200e652631ee1356dd55147d (diff) |
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/Makefile')
-rw-r--r-- | tests/alpha/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/alpha/Makefile b/tests/alpha/Makefile index e4e23d2d08..2b1f03d048 100644 --- a/tests/alpha/Makefile +++ b/tests/alpha/Makefile @@ -23,6 +23,9 @@ test-cmov.o: test-cond.c test-cmov: test-cmov.o crt.o $(LINK) +test-ovf: test-ovf.o crt.o + $(LINK) + check: $(TESTS) for f in $(TESTS); do $(SIM) $$f || exit 1; done |