tests: tcg: lm32: add more test cases

Esp. for testing zero/sign extend in compare operations.

Signed-off-by: Michael Walle <michael@walle.cc>
This commit is contained in:
Michael Walle 2012-12-14 18:13:06 +01:00
parent 608a03c1df
commit 6036e9d87e
4 changed files with 61 additions and 1 deletions

View file

@ -52,4 +52,19 @@ mvi r3, 0
cmpgi r3, r3, 0
check_r3 0
test_name CMPGI_11
mvi r1, 0
cmpgi r3, r1, -32768
check_r3 1
test_name CMPGI_12
mvi r1, -1
cmpgi r3, r1, -32768
check_r3 1
test_name CMPGI_13
mvi r1, -32768
cmpgi r3, r1, -32768
check_r3 0
end