diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-03-09 08:16:40 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-03-09 08:16:40 +0000 |
commit | aa6f5c9ddd68a54f178fa17b5e2c1dfff78e436f (patch) | |
tree | d5d021a973c5808536f576d451894eb8ba2b20d7 /llvm/test/Linker/2002-07-17-LinkTest2.ll | |
parent | cfd8b19ef734792f09cebe41f49d2d1de05bed08 (diff) | |
download | bcm5719-llvm-aa6f5c9ddd68a54f178fa17b5e2c1dfff78e436f.tar.gz bcm5719-llvm-aa6f5c9ddd68a54f178fa17b5e2c1dfff78e436f.zip |
Remove llvm-upgrade and update tests.
llvm-svn: 48103
Diffstat (limited to 'llvm/test/Linker/2002-07-17-LinkTest2.ll')
-rw-r--r-- | llvm/test/Linker/2002-07-17-LinkTest2.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/Linker/2002-07-17-LinkTest2.ll b/llvm/test/Linker/2002-07-17-LinkTest2.ll index 312b9b90d21..fa986f15728 100644 --- a/llvm/test/Linker/2002-07-17-LinkTest2.ll +++ b/llvm/test/Linker/2002-07-17-LinkTest2.ll @@ -1,9 +1,10 @@ ; This fails linking when it is linked with an empty file as the first object file ; RUN: llvm-as > %t1.bc < /dev/null -; RUN: llvm-upgrade < %s | llvm-as > %t2.bc +; RUN: llvm-as < %s > %t2.bc ; RUN: llvm-link %t1.bc %t2.bc -%work = global int (int, int)* %zip +@work = global i32 (i32, i32)* @zip ; <i32 (i32, i32)**> [#uses=0] + +declare i32 @zip(i32, i32) -declare int %zip(int, int) |