diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-19 02:02:57 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-19 02:02:57 +0000 |
commit | 19785995f60c6980677888985884d65dc8975b44 (patch) | |
tree | 0f862fee7587300765570538af61e74d91557906 /test/Linker | |
parent | 5c0db76cf262bec095c6b52ba0aa6e095f9f8298 (diff) |
Fix PR8300 by remembering to keep the bitcast in all cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker')
-rw-r--r-- | test/Linker/PR8300.ll | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Linker/PR8300.ll b/test/Linker/PR8300.ll new file mode 100644 index 0000000000..f0fc1e7a5c --- /dev/null +++ b/test/Linker/PR8300.ll @@ -0,0 +1,13 @@ +; RUN: echo {%foo2 = type \{ \[8 x i8\] \} \ +; RUN: declare void @zed(%foo2*) } > %t.ll +; RUN: llvm-link %t.ll %s -o %t.bc + +%foo = type { [8 x i8] } +%bar = type { [9 x i8] } + +@zed = alias bitcast (void (%bar*)* @xyz to void (%foo*)*) + +define void @xyz(%bar* %this) { +entry: + ret void +} |