OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [ssefn-4.c] - Rev 378

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

/* Execution test for argument passing with SSE2 and local functions
   Written by Paolo Bonzini, 25 January 2005 */
 
/* { dg-do run } */
/* { dg-options "-O2 -msse2 -mfpmath=sse" } */
/* { dg-require-effective-target sse2 } */
 
#include "sse2-check.h"
 
#include <assert.h>
 
static float xs (void)
{
  return 3.14159265;
}
 
float ys (float a)
{
  return xs () * a;
}
 
static double xd (void)
{
  return 3.1415926535;
}
 
double yd (double a)
{
  return xd () * a;
}
 
static void
sse2_test (void)
{
  assert (ys (1) == xs ());
  assert (ys (2) == xs () * 2);
  assert (yd (1) == xd ());
  assert (yd (2) == xd () * 2);
}
 

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.