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
Improve atomic store implementation on hppa-linux.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.oacc-c-c++-common
/
abort-4.c
blob
c29ca3fb1182684372b8d4ebca6775b9117fec34
1
/* { dg-do run } */
2
3
#include <stdlib.h>
4
5
int
6
main
(
int
argc
,
char
**
argv
)
7
{
8
9
#pragma acc kernels
10
{
11
if
(
argc
!=
1
)
12
abort
();
13
}
14
15
return
0
;
16
}
17