This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
a3aef788ec
llvm-project
/
clang
/
test
/
CodeGen
/
static-local-union.c
5 lines
94 B
C
Raw
Normal View
History
Unescape
Escape
Rename clang to clang-cc. Tests and drivers updated, still need to shuffle dirs. llvm-svn: 67602
2009-03-24 10:24:46 +08:00
// RUN: clang-cc -emit-llvm < %s
Don't crash emitting an initializer for a static local with union type. This fix just makes sure to construct the global with the appropriate type, and fixes up the one user this affects to compensate. llvm-svn: 52084
2008-06-08 09:23:18 +08:00
int
a
(
)
{
static
union
{
int
a
;
}
r
[
2
]
=
{
1
,
2
}
;
return
r
[
1
]
.
a
;
}