repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20050607-1.c
blob
41579bbba5efcd6a78f3720b15dfa84903af2833
1
/* PR middle-end/21850 */
2
3
extern
void
abort
(
void
);
4
5
typedef
int
V2SI
__attribute__
((
vector_size
(
8
)));
6
7
int
8
main
(
void
)
9
{
10
#if (__INT_MAX__ == 2147483647) \
11
&& (__LONG_LONG_MAX__ == 9223372036854775807LL)
12
if
(((
int
)(
long long
)(
V2SI
){
2
,
2
}) !=
2
)
13
abort
();
14
#endif
15
return
0
;
16
}