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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr84710.c
blob
6477244860c1db8f2007841fd30fae0fc8436528
1
/* PR target/84710 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -fno-forward-propagate" } */
4
5
char
a
;
6
int
b
;
7
8
void
9
foo
(
void
)
10
{
11
int
d
;
12
b
=
__builtin_mul_overflow
((
char
)
d
,
0xfe
, &
a
);
13
}