Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2005-04-09-ComplexOps.c
blob2962b74553447d153e65c7aa1449df945f9909a2
1 // RUN: %llvmgcc %s -S -o -
3 #include <math.h>
4 #define I 1.0iF
6 double __complex test(double X) { return ~-(X*I); }
8 _Bool EQ(double __complex A, double __complex B) { return A == B; }
9 _Bool NE(double __complex A, double __complex B) { return A != B; }