Go to file
Steve Naroff 8ddb23a6c5 Support '~' for complex conjugation. This is a GCC extension.
This following now compiles without error...

_Complex unsigned X, Y;
_Complex double x, y;
void test2(int c) {
  X = ~Y;
  x = ~y;
}

llvm-svn: 41341
2007-08-23 22:06:40 +00:00
clang Support '~' for complex conjugation. This is a GCC extension. 2007-08-23 22:06:40 +00:00
llvm Fix this testcase: there are two matches for 2007-08-23 17:22:50 +00:00