commit | 0682a468f8ced6a32d618480ce6ee3367cfaecc4 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Tue Sep 15 15:38:31 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Tue Sep 15 15:38:31 2009 +0000 |
tree | 655d0fb64c714b6726daabe9f98765df39b89187 | |
parent | d5939a47767d82e5d4d108c258b7f2320e30bc81 [diff] [blame] |
Use llvm-link -S instead of using llvm-dis. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81860 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll b/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll index 2637da1..7d1020d 100644 --- a/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll +++ b/test/Linker/2005-12-06-AppendingZeroLengthArrays.ll
@@ -1,7 +1,7 @@ ; RUN: echo { @G = appending global \[0 x i32\] zeroinitializer } | \ ; RUN: llvm-as > %t.out2.bc ; RUN: llvm-as < %s > %t.out1.bc -; RUN: llvm-link %t.out1.bc %t.out2.bc | llvm-dis | grep {@G =} +; RUN: llvm-link %t.out1.bc %t.out2.bc -S | grep {@G =} ; When linked, the globals should be merged, and the result should still ; be named '@G'.