From: Gabor Greif Date: Fri, 13 Jul 2007 23:40:27 +0000 (+0000) Subject: fix type of main, use != X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b02d4b4bdf07273e86bf73414d51ea16ce46b081;p=clang fix type of main, use != git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39842 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; }