mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 06:27:16 +00:00
Fix testcase
llvm-svn: 3182
This commit is contained in:
parent
bc4d9a426e
commit
af02419459
@ -3,7 +3,8 @@ union X {
|
||||
void *B;
|
||||
};
|
||||
|
||||
union X void foo() {
|
||||
union X foo() {
|
||||
union X A;
|
||||
A.B = (void*)123
|
||||
A.B = (void*)123;
|
||||
return A;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user