diff options
Diffstat (limited to 'llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll')
-rw-r--r-- | llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll index 3caf7632cb7..029bce264a5 100644 --- a/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll +++ b/llvm/test/Linker/2003-04-26-NullPtrLinkProblem.ll @@ -1,9 +1,9 @@ ; This one fails because the LLVM runtime is allowing two null pointers of ; the same type to be created! -; RUN: echo "%T = type int" | llvm-upgrade | llvm-as > %t.2.bc +; RUN: echo {%T = type int} | llvm-upgrade | llvm-as > %t.2.bc ; RUN: llvm-upgrade < %s | llvm-as -f > %t.1.bc -; RUN: llvm-link %t.[12].bc +; RUN: llvm-link %t.1.bc %t.2.bc %T = type opaque |