diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-16 15:29:54 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-09-16 15:29:54 +0000 |
commit | e78760e179caabddb48e158c4628f717995fcbc4 (patch) | |
tree | a016e106f775ab73cd2da360ea987fed05acf481 /test/Transforms/Reassociate/otherops.ll | |
parent | aad65f6c18f7900e1e3373fef63f1c6a89fc7fdf (diff) | |
download | external_llvm-e78760e179caabddb48e158c4628f717995fcbc4.zip external_llvm-e78760e179caabddb48e158c4628f717995fcbc4.tar.gz external_llvm-e78760e179caabddb48e158c4628f717995fcbc4.tar.bz2 |
Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8558 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Reassociate/otherops.ll')
-rw-r--r-- | test/Transforms/Reassociate/otherops.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/Reassociate/otherops.ll b/test/Transforms/Reassociate/otherops.ll index 6960b1d..0a205e3 100644 --- a/test/Transforms/Reassociate/otherops.ll +++ b/test/Transforms/Reassociate/otherops.ll @@ -1,6 +1,6 @@ ; Reassociation should apply to Add, Mul, And, Or, & Xor ; -; RUN: as < %s | opt -reassociate -constprop -instcombine -die | dis | not grep 12 +; RUN: llvm-as < %s | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 12 int "test_mul"(int %arg) { %tmp1 = mul int 12, %arg |