diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-19 22:12:47 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-11-19 22:12:47 +0000 |
commit | 9cdf757fd58b4c6b6bcc9847d3eef59e24b86c39 (patch) | |
tree | 423c435be7b97127d4416582a86a03a8e454eb46 /tests | |
parent | 36bdbe5479cebb5765779a430d14daddddcab871 (diff) |
more fcmovxx tests
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@470 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-i386.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-i386.c b/tests/test-i386.c index 2bcc574dbb..821b79b65d 100644 --- a/tests/test-i386.c +++ b/tests/test-i386.c @@ -692,6 +692,8 @@ void test_fcmov(void) TEST_FCMOV(a, b, eflags, "nbe"); } TEST_FCMOV(a, b, 0, "u"); + TEST_FCMOV(a, b, CC_P, "u"); + TEST_FCMOV(a, b, 0, "nu"); TEST_FCMOV(a, b, CC_P, "nu"); } |