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
S/390: Allow immediates in loc expander
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr59261.c
blob
6b912deb09201825185abad018241312891c27fa
1
/* PR middle-end/59261 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
typedef
signed char
V
__attribute__
((
vector_size
(
8
)));
6
7
void
8
foo
(
V
*
a
,
V
*
b
)
9
{
10
*
a
= *
b
*
3
;
11
}
12
13
void
14
bar
(
V
*
a
,
V
*
b
)
15
{
16
*
a
= *
b
*
4
;
17
}