blob: 51d4824681a8d629b23a4005eaf40b4b88b8bfcc [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3double Test(double A, double B, double C, double D) {
4 return -(A-B) - (C-D);
5}
6