diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:46:34 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-28 21:46:34 +0000 |
commit | 82086a5894a7ed6fc112a61637a508e45c425b56 (patch) | |
tree | 22b0c2020c1d169f80bde53d75efa6bb371c1fe4 /test/Scripts | |
parent | a86b04246a1abbb42d1b7863c44ebac73bafa5bd (diff) |
Near-term fix for renaming `as' -> `llvm-as' and `dis' -> `llvm-dis'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Scripts')
-rwxr-xr-x | test/Scripts/as | 5 | ||||
-rwxr-xr-x | test/Scripts/dis | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/Scripts/as b/test/Scripts/as new file mode 100755 index 0000000000..70ed41abbc --- /dev/null +++ b/test/Scripts/as @@ -0,0 +1,5 @@ +#!/bin/sh +# +# Run llvm-as with same arguments +# +llvm-as $* diff --git a/test/Scripts/dis b/test/Scripts/dis new file mode 100755 index 0000000000..141d6cd5f0 --- /dev/null +++ b/test/Scripts/dis @@ -0,0 +1,5 @@ +#!/bin/sh +# +# Run llvm-dis with same arguments +# +llvm-dis $* |