Skip to content

Commit

Permalink
target-openrisc: Correct carry flag check of l.addc and l.addic test …
Browse files Browse the repository at this point in the history
…cases

The test cases did not correctly test for the carry flag.

Signed-off-by: Sebastian Macke <[email protected]>
Reviewed-by: Jia Liu <[email protected]>
Signed-off-by: Jia Liu <[email protected]>
  • Loading branch information
s-macke authored and J-Liu committed Nov 20, 2013
1 parent 93147a1 commit 14a650e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 5 additions & 3 deletions tests/tcg/openrisc/test_addc.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ int main(void)

b = 0x01;
c = 0xffffffff;
result = 1;
result = 0;
__asm
("l.addc %0, %1, %2\n\t"
("l.add r1, r1, r0\n\t" /* clear carry */
"l.addc %0, %1, %2\n\t"
: "=r"(a)
: "r"(b), "r"(c)
);
Expand All @@ -22,7 +23,8 @@ int main(void)
c = 0xffffffff;
result = 0x80000001;
__asm
("l.addc %0, %1, %2\n\t"
("l.add r1, r1, r0\n\t" /* clear carry */
"l.addc %0, %1, %2\n\t"
"l.movhi %2, 0x7fff\n\t"
"l.ori %2, %2, 0xffff\n\t"
"l.addc %0, %1, %2\n\t"
Expand Down
10 changes: 6 additions & 4 deletions tests/tcg/openrisc/test_addic.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,22 @@ int main(void)
int result;

a = 1;
result = 0x1;
result = 0x0;
__asm
("l.addic %0, %0, 0xffff\n\t"
("l.add r1, r1, r0\n\t" /* clear carry */
"l.addic %0, %0, 0xffff\n\t"
: "+r"(a)
);
if (a != result) {
printf("first addic error\n");
return -1;
}

a = 0x1;
a = -1;
result = 0x201;
__asm
("l.addic %0, %0, 0xffff\n\t"
("l.add r1, r1, r0\n\t" /* clear carry */
"l.addic %0, %0, 0x1\n\t"
"l.ori %0, r0, 0x100\n\t"
"l.addic %0, %0, 0x100\n\t"
: "+r"(a)
Expand Down

0 comments on commit 14a650e

Please sign in to comment.