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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr100292.c
blob
675a60c341289b6608b04a4f45bb79cb571d141f
1
/* { dg-do compile } */
2
3
typedef
unsigned char
__attribute__
((
__vector_size__
(
4
)))
V
;
4
5
extern
void
bar
(
V v
);
6
7
void
8
foo
(
char
c
)
9
{
10
bar
(
c
<= (
V
)
127
);
11
}