diff options
-rw-r--r-- | test/CodeGen/complex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/complex.c b/test/CodeGen/complex.c index 30793aaf9e..075f47c761 100644 --- a/test/CodeGen/complex.c +++ b/test/CodeGen/complex.c @@ -1,10 +1,10 @@ // RUN: clang -emit-llvm %s // XFAIL: * -void main(void) +int main(void) { double _Complex a = 5; double _Complex b = 42; - return a * b == b * a; + return a * b != b * a; } |