Home | History | Annotate | Download | only in CodeGen
      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