From patchwork Tue Oct 5 15:25:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [testsuite] cmpsi-2 test was broken From: Hariharan Sandanagobalane X-Patchwork-Id: 66837 Message-Id: <4CAB435C.8020700@picochip.com> To: gcc-patches@gcc.gnu.org Cc: eager@eagerm.com Date: Tue, 05 Oct 2010 16:25:16 +0100 Hello all, Is it alright to commit the following patch to fix the broken cmpsi-2 test? Cheers Hari ChangeLog: gcc.c-torture/execute/cmpsi-2.c : Unsigned comparisons should use unsigned values. Patch: Index: gcc/testsuite/gcc.c-torture/execute/cmpsi-2.c =================================================================== --- gcc/testsuite/gcc.c-torture/execute/cmpsi-2.c (revision 164991) +++ gcc/testsuite/gcc.c-torture/execute/cmpsi-2.c (working copy) @@ -49,7 +49,7 @@ return F; } -fltu (long x, long y) +fltu (unsigned long x, unsigned long y) { if (x < y) return T; @@ -57,7 +57,7 @@ return F; } -fgeu (long x, long y) +fgeu (unsigned long x, unsigned long y) { if (x >= y) return T; @@ -65,7 +65,7 @@ return F; } -fgtu (long x, long y) +fgtu (unsigned long x, unsigned long y) { if (x > y) return T; @@ -73,7 +73,7 @@ return F; } -fleu (long x, long y) +fleu (unsigned long x, unsigned long y) { if (x <= y) return T;