[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / 2005-04-09-ComplexOps.c
blob23716d362c9a12bb637e10b8ac76870c70e4cc2c
1 // RUN: %clang_cc1 %s -emit-llvm -o -
3 #define I 1.0iF
5 double __complex test(double X) { return ~-(X*I); }
7 _Bool EQ(double __complex A, double __complex B) { return A == B; }
8 _Bool NE(double __complex A, double __complex B) { return A != B; }