diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-15 20:04:28 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-15 20:04:28 +0000 |
commit | b6cb66f1c3d0fa98132ef85b4c93a700439572db (patch) | |
tree | 59f5e637824a20a6df17d0bf5b1a5068cc5bbad6 /test/Linker/2003-04-26-NullPtrLinkProblem.ll | |
parent | 14285c89e7e02b3deac1593e17a556262e7fd77c (diff) |
Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8545 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Linker/2003-04-26-NullPtrLinkProblem.ll')
-rw-r--r-- | test/Linker/2003-04-26-NullPtrLinkProblem.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Linker/2003-04-26-NullPtrLinkProblem.ll b/test/Linker/2003-04-26-NullPtrLinkProblem.ll index 53c2f4ccbd..03447b12b1 100644 --- a/test/Linker/2003-04-26-NullPtrLinkProblem.ll +++ b/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" | as > %t.2.bc -; RUN: as < %s > %t.1.bc -; RUN: link %t.[12].bc +; RUN: echo "%T = type int" | llvm-as > %t.2.bc +; RUN: llvm-as < %s > %t.1.bc +; RUN: llvm-link %t.[12].bc %T = type opaque |