make this harder
authorChris Lattner <sabre@nondot.org>
Sun, 10 Apr 2005 03:18:18 +0000 (03:18 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 10 Apr 2005 03:18:18 +0000 (03:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21201 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2005-04-09-ComplexOps.c

index 87fd996256006323fdea6f1b66f1f67aa0ff5d76..be05c62b919a8ab17d37c3544514b2c191c403db 100644 (file)
@@ -4,3 +4,6 @@
 #define I 1.0iF
 
 double __complex test(double X) { return ~-(X*I); }
+
+_Bool EQ(double __complex A, double __complex B) { return A == B; }
+_Bool NE(double __complex A, double __complex B) { return A != B; }