new testcase for previously unsupported unary complex operators
[oota-llvm.git] / test / CFrontend / 2005-04-09-ComplexOps.c
1 // %llvmgcc %s -S -o -
2
3 #include <math.h>
4 #define I 1.0iF
5
6 double __complex test(double X) { return -(X*I); }