[PATCH, testsuite] cmpsi-2 test was broken

Michael Eager eager@eagerm.com
Tue Oct 5 19:35:00 GMT 2010


Hariharan Sandanagobalane wrote:
> Hello all,
> Is it alright to commit the following patch to fix the broken cmpsi-2 test?

yes, thanks!

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


-- 
Michael Eager	 eager@eagercon.com
1960 Park Blvd., Palo Alto, CA 94306  650-325-8077



More information about the Gcc-patches mailing list