diff options
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/pr32191.c')
-rw-r--r-- | gcc/testsuite/gcc.target/i386/pr32191.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/pr32191.c b/gcc/testsuite/gcc.target/i386/pr32191.c new file mode 100644 index 000000000..f5238b01d --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr32191.c @@ -0,0 +1,9 @@ +/* { dg-do compile } */ +/* { dg-options "-std=c99" } */ + +typedef _Complex float __attribute__((mode(TC))) _Complex128; + +_Complex128 foo (_Complex128 x, _Complex128 y) +{ + return x * y; +} |