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
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr49496.c
blob
06563f3bcdf1cfad5547ed1412d1d1c952e84190
1
/* PR debug/49496 */
2
/* { dg-do compile } */
3
/* { dg-options "-O3 -fcompare-debug" } */
4
5
unsigned short
u
[
8
],
s1
[
8
],
s2
[
8
];
6
7
void
bar
(
unsigned short
*);
8
9
void
10
foo
(
void
)
11
{
12
unsigned short
e
[
8
];
13
int
i
;
14
for
(
i
=
0
;
i
<
8
;
i
++)
15
{
16
int
tmp
=
s1
[
i
] *
s2
[
i
];
17
e
[
i
] = (
tmp
&
0xffff0000
) >>
16
;
18
}
19
bar
(
e
);
20
}