blob: e53385f0eb74543beea46b515d4b658af68668fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Verify pattern initialization for complex type automatic variables. */
/* Note, _Complex long double is initialized to zeroes due to the current
implemenation limitation. */
/* { dg-do compile } */
/* { dg-options "-ftrivial-auto-var-init=pattern -march=x86-64 -mtune=generic -msse" } */
_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 "long\t0" 8 { target { ! ia32 } } } } */
/* { dg-final { scan-assembler-times "long\t-16843010" 6 } } */
|