diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2011-09-06 03:55:57 +0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-09-10 16:57:40 +0000 |
commit | 7d890b4074a415d39f02d3b01e7c40ece1b57087 (patch) | |
tree | c5fca41c0763dfb3a7475c4b59dfaf9872d7d46e /tests/xtensa/test_mul32.S | |
parent | 16e7caae53f6143d0d4d2cb1dadb048b4de790a5 (diff) |
target-xtensa: add regression testsuite
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tests/xtensa/test_mul32.S')
-rw-r--r-- | tests/xtensa/test_mul32.S | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/xtensa/test_mul32.S b/tests/xtensa/test_mul32.S new file mode 100644 index 0000000000..fdaf57331b --- /dev/null +++ b/tests/xtensa/test_mul32.S @@ -0,0 +1,20 @@ +.include "macros.inc" + +test_suite mul32 + +test mull + movi a2, 0x137f5a5a + mov a3, a2 + movi a4, 0xa5a5137f + movi a6, 0x5de480a6 + mull a5, a2, a4 + assert eq, a5, a6 + mull a2, a2, a4 + assert eq, a2, a6 + mull a3, a4, a3 + assert eq, a3, a6 +test_end + +/* unfortunately dc232b doesn't have muluh/mulsh*/ + +test_suite_end |