Near-term fix for renaming `as' -> `llvm-as' and `dis' -> `llvm-dis'.
authorMisha Brukman <brukman+llvm@gmail.com>
Thu, 28 Aug 2003 21:46:34 +0000 (21:46 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Thu, 28 Aug 2003 21:46:34 +0000 (21:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8194 91177308-0d34-0410-b5e6-96231b3b80d8

test/Scripts/as [new file with mode: 0755]
test/Scripts/dis [new file with mode: 0755]

diff --git a/test/Scripts/as b/test/Scripts/as
new file mode 100755 (executable)
index 0000000..70ed41a
--- /dev/null
@@ -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 (executable)
index 0000000..141d6cd
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+#
+# Run llvm-dis with same arguments
+#
+llvm-dis $*