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
Add {symbol,call}_summary::get method and use it in HSA.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
pr45112.C
blob
34dd3e1bcd811fba0287c36ef0712a5cdd67ffec
1
/* { dg-do compile } */
2
3
struct JSString
4
{
5
unsigned char mLength;
6
static JSString unitStringTable[];
7
};
8
9
JSString JSString::unitStringTable[] __attribute__ ((aligned (8))) = { 1 };
10
11
int bug [__alignof__ (JSString::unitStringTable) >= 8 ? 1 : -1];
12