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
/
vect
/
bb-slp-pr114799.c
blob
70572fe703ba9ef78c497c8253acdd605f4a20e7
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fno-tree-forwprop" } */
3
4
unsigned long
x
;
5
unsigned char
y
;
6
7
void
8
foo
(
void
)
9
{
10
unsigned long
tt
=
y
;
11
tt
+=
255
;
12
unsigned short
t1
=
tt
;
13
t1
=
254
-
t1
;
14
tt
+= ((
unsigned long
)
t1
);
15
x
=
tt
;
16
}