repo.or.cz
/
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.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
goacc
/
pr107028-1.C
blob
93b87439b4f34fc126c06cb2f95cc9c6a9493b5a
1
// { dg-do compile }
2
// { dg-additional-options "-fdump-tree-gimple" }
3
4
class data_container {
5
public:
6
int data;
7
};
8
9
void test2() {
10
data_container a;
11
#pragma acc data copyin(a, a.data)
12
// { dg-final { scan-tree-dump {map\(to:a \[len: [0-9]+\]\)} "gimple" } }
13
{ }
14
}