From 9def6cc3788de8b493ea2d1b9ea4f297145bdeb5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 10 Apr 2005 03:18:18 +0000 Subject: [PATCH] make this harder git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21201 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2005-04-09-ComplexOps.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/CFrontend/2005-04-09-ComplexOps.c b/test/CFrontend/2005-04-09-ComplexOps.c index 87fd9962560..be05c62b919 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; }