xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2005-04-09-ComplexOps.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: %clang_cc1 %s -emit-llvm -o -
2 
3 #define I 1.0iF
4 
5 double __complex test(double X) { return ~-(X*I); }
6 
7 _Bool EQ(double __complex A, double __complex B) { return A == B; }
8 _Bool NE(double __complex A, double __complex B) { return A != B; }
9