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
Use gather loads for strided accesses
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
nvptx
/
abort.c
blob
d32206874008e60033cdd34aeac2f507317e8c9c
1
/* { dg-do compile} */
2
/* Annotate no return functions with a trailing 'trap'. */
3
4
extern
void
abort
();
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
if
(
argc
>
2
)
9
abort
();
10
return
0
;
11
}
12
13
/* { dg-final { scan-assembler "call abort;\[\r\n\t \]+trap;" } } */