Home | History | Annotate | Download | only in FrontendC
      1 // RUN: %llvmgcc %s -S -o -
      2 
      3 #include <math.h>
      4 #define I 1.0iF
      5 
      6 double __complex test(double X) { return ~-(X*I); }
      7 
      8 _Bool EQ(double __complex A, double __complex B) { return A == B; }
      9 _Bool NE(double __complex A, double __complex B) { return A != B; }
     10