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:
Jia Liu 2012-07-20 15:50:53 +08:00 committed by Blue Swirl
parent d962783e98
commit d901eff3e6
52 changed files with 2579 additions and 0 deletions

View 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;
}