repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR testsuite/52641
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
complex-4.c
blob
fa2ad5816039558184d39edeaec59dc09dc7b7ea
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-optimized" } */
3
int
g
(
_Complex
int
*);
4
int
f
(
void
)
5
{
6
_Complex
int
t
=
0
;
7
int
i
,
j
;
8
__real__ t
+=
2
;
9
__imag__ t
+=
2
;
10
return
g
(&
t
);
11
}
12
13
/* { dg-final { scan-tree-dump-times "__complex__" 0 "optimized" { xfail *-*-* } } } */
14
/* { dg-final { cleanup-tree-dump "optimized" } } */