diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20060625-1.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/20060625-1.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20060625-1.c b/gcc/testsuite/gcc.c-torture/compile/20060625-1.c new file mode 100644 index 000000000..37efb9da6 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/20060625-1.c @@ -0,0 +1,10 @@ +/* PR middle-end/28151 */ +/* Testcase by Steven Bosscher <stevenb.gcc@gmail.com> */ + +_Complex float b; + +void foo (void) +{ + _Complex float a = __FLT_MAX__; + b = __FLT_MAX__ + a; +} |