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
/
2007-05-29-UnionCopy.c
blob
9f71687b40a5a410f710aa96e89646f0ff2009e5
1
// RUN: %clang_cc1 -emit-llvm -o - %s | grep memcpy
2
// PR1421
3
4
struct
A
{
5
char
c
;
6
int
i
;
7
};
8
9
struct
B
{
10
int
c
;
11
unsigned char
x
;
12
};
13
14
union
U
{
struct
A a
;
struct
B b
; };
15
16
void
check
(
union
U
*
u
,
union
U
*
v
) {
17
*
u
= *
v
;
18
}