mips-movcc-[123].c: Pass the ?: expressions to other functions.

* gcc.dg/mips-movcc-[123].c: Pass the ?: expressions to other
	functions.

From-SVN: r91371
This commit is contained in:
Richard Sandiford 2004-11-27 09:54:10 +00:00 committed by Richard Sandiford
parent e64ca6c474
commit 601a71a77f
4 changed files with 24 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2004-11-27 Richard Sandiford <rsandifo@redhat.com>
* gcc.dg/mips-movcc-[123].c: Pass the ?: expressions to other
functions.
2004-11-27 Jakub Jelinek <jakub@redhat.com>
PR rtl-optimization/17825

View File

@ -4,20 +4,22 @@
/* { dg-final { scan-assembler "movn" } } */
/* { dg-final { scan-assembler "movt" } } */
void ext_int (int);
int
sub1 (int i, int j, int k)
{
return k ? i : j;
ext_int (k ? i : j);
}
int
sub2 (int i, int j, long l)
{
return !l ? i : j;
ext_int (!l ? i : j);
}
int
sub3 (int i, int j, float f)
{
return f ? i : j;
ext_int (f ? i : j);
}

View File

@ -4,20 +4,22 @@
/* { dg-final { scan-assembler "movn" } } */
/* { dg-final { scan-assembler "movf" } } */
void ext_long (long);
long
sub4 (long i, long j, long k)
{
return k ? i : j;
ext_long (k ? i : j);
}
long
sub5 (long i, long j, int k)
{
return !k ? i : j;
ext_long (!k ? i : j);
}
long
sub6 (long i, long j, float f)
{
return !f ? i : j;
ext_long (!f ? i : j);
}

View File

@ -7,38 +7,41 @@
/* { dg-final { scan-assembler "movn.d" } } */
/* { dg-final { scan-assembler "movf.d" } } */
void ext_float (float);
void ext_double (double);
float
sub7 (float f, float g, int i)
{
return i ? f : g;
ext_float (i ? f : g);
}
float
sub8 (float f, float g, long l)
{
return !l ? f : g;
ext_float (!l ? f : g);
}
float
sub9 (float f, float g, float h)
{
return h ? f : g;
ext_float (h ? f : g);
}
double
suba (double f, double g, int i)
{
return i ? f : g;
ext_double (i ? f : g);
}
double
subb (double f, double g, long l)
{
return !l ? f : g;
ext_double (!l ? f : g);
}
double
subc (double f, double g, double h)
{
return !h ? f : g;
ext_double (!h ? f : g);
}