Testcase for PR2520.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53230 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-07-08 10:11:36 +00:00
parent cfa3c236b2
commit 4a497a2757

View File

@ -0,0 +1,4 @@
// RUN: %llvmgcc -S %s -o - | grep readnone
// PR2520
#include <math.h>
double f(double *x, double *y) { return fabs(*x + *y); }