fix type of main, use !=

llvm-svn: 39842
This commit is contained in:
Gabor Greif 2007-07-13 23:40:27 +00:00
parent d4606aa36e
commit 03a0073b36
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}