repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
static-local-union.c
blob
289eae0184f1a68ac25c75b483017f76c599b75b
1
// RUN: %clang_cc1 -emit-llvm < %s
2
3
int
a
(
void
) {
static union
{
int
a
;}
r
[
2
] = {
1
,
2
};
return
r
[
1
].
a
;}
4