OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [c-c++-common/] [pr41779.c] - Rev 686

Compare with Previous | Blame | View Log

/* PR41779: Wconversion cannot see throught real*integer promotions. */
/* { dg-do compile } */
/* { dg-skip-if "doubles are floats" { "avr-*-*" } { "*" } { "" } } */
/* { dg-options "-std=c99 -Wconversion" { target c } } */
/* { dg-options "-Wconversion" { target c++ } } */
/* { dg-require-effective-target large_double } */
 
float f1(float x, unsigned short y)
{
  return x * y;
}
 
float f2(float x, short y)
{
  return x * y;
}
 
float f3(float x, char y)
{
  return x * y;
}
 
float f4(float x, unsigned char y)
{
  return x * y;
}
 
float f5(float x, int y)
{
  return x * y; /* { dg-warning "conversion" } */
}
 
double c1(float x, unsigned short y, int z)
{
  return z ? x + x : y;
}
 
double c2(float x, short y, int z)
{
  return z ? x + x : y;
}
 
double c3(float x, char y, int z)
{
  return z ? x + x : y;
}
 
double c4(float x, unsigned char y, int z)
{
  return z ? x + x : y;
}
 
double c5(float x, int y, int z)
{
  return z ? x + x : y; /* { dg-warning "conversion" } */
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.