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 target/84226
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
alpha
/
pr42113.c
blob
228c14abb64c4719895541a0c8d9398695033bcd
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
int
foo
(
int
a
,
int
b
)
5
{
6
int
bar
=
a
*
sizeof
(
int
);
7
8
if
(
b
)
9
bar
+=
sizeof
(
int
);
10
11
return
bar
;
12
}