blob: f0fc1e7a5cc4de06b56143b4829dd8789b291d17 [file] [log] [blame]
John Bauman66b8ab22014-05-06 15:57:45 -04001; RUN: echo {%foo2 = type \{ \[8 x i8\] \} \
2; RUN: declare void @zed(%foo2*) } > %t.ll
3; RUN: llvm-link %t.ll %s -o %t.bc
4
5%foo = type { [8 x i8] }
6%bar = type { [9 x i8] }
7
8@zed = alias bitcast (void (%bar*)* @xyz to void (%foo*)*)
9
10define void @xyz(%bar* %this) {
11entry:
12 ret void
13}