• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %llvmgcc -S %s -o - | grep readnone
2 // PR2520
3 #include <math.h>
f(double * x,double * y)4 double f(double *x, double *y) { return fabs(*x + *y); }
5