diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-22 08:17:17 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-22 08:17:17 +0000 |
commit | 591858a403a71fc5b30bc7b071f18bc0cf327cfc (patch) | |
tree | 37394bfd555529c78f4c2885a8b9fe02a46fcb49 /test/Feature | |
parent | c73ede0a9beaee2e11d004f816a8207d9bd79072 (diff) | |
download | external_llvm-591858a403a71fc5b30bc7b071f18bc0cf327cfc.zip external_llvm-591858a403a71fc5b30bc7b071f18bc0cf327cfc.tar.gz external_llvm-591858a403a71fc5b30bc7b071f18bc0cf327cfc.tar.bz2 |
Support chained aliases for LLVM IR printing. This fixes PR2145
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48684 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature')
-rw-r--r-- | test/Feature/aliases.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Feature/aliases.ll b/test/Feature/aliases.ll index fc5e768..d44dff4 100644 --- a/test/Feature/aliases.ll +++ b/test/Feature/aliases.ll @@ -5,11 +5,13 @@ @bar = external global i32 @foo1 = alias i32* @bar @foo2 = alias i32* @bar +@foo3 = alias i32* @foo2 %FunTy = type i32() declare i32 @foo_f() @bar_f = alias weak %FunTy* @foo_f +@bar_ff = alias i32()* @bar_f @bar_i = alias internal i32* @bar |