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
/
pr100292.c
blob
147c9324d81bac88e50ed4d925026052c0b7a62b
1
/* { dg-do compile } */
2
/* { dg-require-effective-target int32 } */
3
4
typedef
unsigned char
__attribute__
((
__vector_size__
(
4
)))
V
;
5
6
extern
void
bar
(
V v
);
7
8
void
9
foo
(
char
c
)
10
{
11
bar
(
c
<= (
V
)
127
);
12
}