blob: 0456c66f49605e2d41ca49210d38ff7c5ffa2e06 [file] [log] [blame]
/* Verify pattern initialization for complex type automatic variables. */
/* { dg-do compile } */
/* { dg-options "-ftrivial-auto-var-init=pattern" } */
_Complex long double result;
_Complex long double foo()
{
_Complex float temp1;
_Complex double temp2;
_Complex long double temp3;
result = temp1 + temp2 + temp3;
return result;
}
/* { dg-final { scan-assembler-times "word\t-16843010" 14 } } */