diff options
| author | Gabor Greif <ggreif@gmail.com> | 2007-07-13 23:33:18 +0000 |
|---|---|---|
| committer | Gabor Greif <ggreif@gmail.com> | 2007-07-13 23:33:18 +0000 |
| commit | d4606aa36e1ac288b92bfe8f576ab589727ce3d9 (patch) | |
| tree | d29f6c48fff2e4757d44a70bb1f4d65b1cf1e705 /clang/test/CodeGen/complex.c | |
| parent | b8ea4fb8dbf44fd73b3ae0f319e280fdb2950fa3 (diff) | |
| download | bcm5719-llvm-d4606aa36e1ac288b92bfe8f576ab589727ce3d9.tar.gz bcm5719-llvm-d4606aa36e1ac288b92bfe8f576ab589727ce3d9.zip | |
implement _Complex * == and !=
llvm-svn: 39841
Diffstat (limited to 'clang/test/CodeGen/complex.c')
| -rw-r--r-- | clang/test/CodeGen/complex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/complex.c b/clang/test/CodeGen/complex.c index 001d148bc55..30793aaf9e7 100644 --- a/clang/test/CodeGen/complex.c +++ b/clang/test/CodeGen/complex.c @@ -6,5 +6,5 @@ void main(void) double _Complex a = 5; double _Complex b = 42; - return a * b == 123; + return a * b == b * a; } |

