summaryrefslogtreecommitdiff
path: root/test/CFrontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-10 03:18:18 +0000
committerChris Lattner <sabre@nondot.org>2005-04-10 03:18:18 +0000
commit9def6cc3788de8b493ea2d1b9ea4f297145bdeb5 (patch)
tree80b6c55a7972b57162ee3e47cd9597c6daeda36a /test/CFrontend
parenta213bc2146bf3f37717b9b4fb72b943ab29c422c (diff)
downloadllvm-9def6cc3788de8b493ea2d1b9ea4f297145bdeb5.tar.gz
llvm-9def6cc3788de8b493ea2d1b9ea4f297145bdeb5.tar.bz2
llvm-9def6cc3788de8b493ea2d1b9ea4f297145bdeb5.tar.xz
make this harder
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CFrontend')
-rw-r--r--test/CFrontend/2005-04-09-ComplexOps.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/CFrontend/2005-04-09-ComplexOps.c b/test/CFrontend/2005-04-09-ComplexOps.c
index 87fd996256..be05c62b91 100644
--- a/test/CFrontend/2005-04-09-ComplexOps.c
+++ b/test/CFrontend/2005-04-09-ComplexOps.c
@@ -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; }