mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
target-or32: Add testcases
Add testcases for OpenRISC. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
d962783e98
commit
d901eff3e6
52 changed files with 2579 additions and 0 deletions
35
tests/tcg/openrisc/test_lf_sub.c
Normal file
35
tests/tcg/openrisc/test_lf_sub.c
Normal file
|
@ -0,0 +1,35 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
float a, b, c;
|
||||
float result;
|
||||
|
||||
b = 10.5;
|
||||
c = 1.5;
|
||||
result = 9.0;
|
||||
__asm
|
||||
("lf.sub.s %0, %1, %2\n\t"
|
||||
: "=r"(a)
|
||||
: "r"(b), "r"(c)
|
||||
);
|
||||
if (a != result) {
|
||||
printf("lf.sub.s error\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* b = 0x999;
|
||||
c = 0x654;
|
||||
result = 0x345;
|
||||
__asm
|
||||
("lf.sub.d %0, %1, %2\n\t"
|
||||
: "=r"(a)
|
||||
: "r"(b), "r"(c)
|
||||
);
|
||||
if (a != result) {
|
||||
printf("lf.sub.d error\n");
|
||||
return -1;
|
||||
}*/
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue