summaryrefslogtreecommitdiff
path: root/test/FrontendC/2003-06-23-GCC-fold-infinite-recursion.c
blob: 80562c8849b00e419cdae08376daed3fc159fdd7 (plain)
1
2
3
4
5
6
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

double Test(double A, double B, double C, double D) {
  return -(A-B) - (C-D);
}