mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -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
39
tests/tcg/openrisc/test_lf_add.c
Normal file
39
tests/tcg/openrisc/test_lf_add.c
Normal file
|
@ -0,0 +1,39 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
float a, b;
|
||||
float res2;
|
||||
|
||||
a = 1.5;
|
||||
b = 2.5;
|
||||
res2 = 4.0;
|
||||
__asm
|
||||
("lf.add.s %0, %0, %1\n\t"
|
||||
: "+r"(a)
|
||||
: "r"(b)
|
||||
);
|
||||
if (a != res2) {
|
||||
printf("lf.add.s error, %f\n", a);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* double c, d;
|
||||
double res1;
|
||||
|
||||
c = 1.5;
|
||||
d = 1.5;
|
||||
res1 = 3.00;
|
||||
__asm
|
||||
("lf.add.d %0, %1, %2\n\t"
|
||||
: "+r"(c)
|
||||
: "r"(d)
|
||||
);
|
||||
|
||||
if ((e - res1) > 0.002) {
|
||||
printf("lf.add.d error, %f\n", e - res1);
|
||||
return -1;
|
||||
}*/
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue