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
OpenACC documentation updates.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.oacc-c
/
lib-20.c
blob
b379a8f7add94323b8ecef0839cd1b04e3f8e576
1
/* { dg-do run } */
2
3
#include <stdlib.h>
4
#include <openacc.h>
5
6
int
7
main
(
int
argc
,
char
**
argv
)
8
{
9
const int
N
=
256
;
10
int
i
;
11
unsigned char
*
h
;
12
13
h
= (
unsigned char
*)
malloc
(
N
);
14
15
for
(
i
=
0
;
i
<
N
;
i
++)
16
{
17
h
[
i
] =
i
;
18
}
19
20
(
void
)
acc_copyin
(
h
,
N
);
21
22
acc_copyout
(
h
,
N
+
1
);
23
24
free
(
h
);
25
26
return
0
;
27
}
28
29
/* { dg-shouldfail "libgomp: \[\h+,256\] surounds2 \[\h+,\+257\]" } */