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
/
2003-06-22-UnionCrash.c
blob
eb5014c37e7d4a7c82674493f7b18559bb432ffd
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
struct
Blend_Map_Entry
{
4
union
{
5
float
Colour
[
5
];
6
double
Point_Slope
[
2
];
7
}
Vals
;
8
};
9
10
void
test
(
struct
Blend_Map_Entry
*
Foo
)
11
{
12
}
13