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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [sparc/] [fmaf-1.c] - Rev 749

Go to most recent revision | Compare with Previous | Blame | View Log

/* { dg-do compile } */
/* { dg-options "-O2 -mfmaf" } */
 
float fmadds (float a, float b, float c)
{
  return a * b + c;
}
 
float fmsubs (float a, float b, float c)
{
  return a * b - c;
}
 
float fnmadds (float a, float b, float c)
{
  return -(a * b + c);
}
 
float fnmsubs (float a, float b, float c)
{
  return -(a * b - c);
}
 
double fmaddd (double a, double b, double c)
{
  return a * b + c;
}
 
double fmsubd (double a, double b, double c)
{
  return a * b - c;
}
 
double fnmaddd (double a, double b, double c)
{
  return -(a * b + c);
}
 
double fnmsubd (double a, double b, double c)
{
  return -(a * b - c);
}
 
/* { dg-final { scan-assembler "fmadds\t%" } } */
/* { dg-final { scan-assembler "fmsubs\t%" } } */
/* { dg-final { scan-assembler "fnmadds\t%" } } */
/* { dg-final { scan-assembler "fnmsubs\t%" } } */
/* { dg-final { scan-assembler "fmaddd\t%" } } */
/* { dg-final { scan-assembler "fmsubd\t%" } } */
/* { dg-final { scan-assembler "fnmaddd\t%" } } */
/* { dg-final { scan-assembler "fnmsubd\t%" } } */
 

Go to most recent revision | 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.