summaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-01 00:50:36 +0000
committerChris Lattner <sabre@nondot.org>2001-10-01 00:50:36 +0000
commit19f86234168e57ade30ff3ca90e249571c17ea90 (patch)
tree42ab9e4d05d478a933980673514ba98a71f855b1 /test/Makefile
parentf0d2676ee51eb8c3bb2bbf857ba156b3a58976a0 (diff)
downloadexternal_llvm-19f86234168e57ade30ff3ca90e249571c17ea90.zip
external_llvm-19f86234168e57ade30ff3ca90e249571c17ea90.tar.gz
external_llvm-19f86234168e57ade30ff3ca90e249571c17ea90.tar.bz2
Add path to as so it doesn't find llvm as if that path is set.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@687 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 82576e2..10b5d5b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -4,7 +4,7 @@ LLCOPTS := -dsched y
TESTS := $(wildcard *.ll)
-LLCTESTS := $(shell /bin/ls *.ll | grep -v testmemory | grep -v testswitch | grep -v sumarray | grep -v opttest | grep -v xx.ll )
+LLCTESTS := $(shell /bin/ls *.ll | grep -v testmemory | grep -v testswitch | grep -v sumarray | grep -v opttest | grep -v xx.ll | grep -v select.ll )
test all : testasmdis testopt testcodegen
@@ -43,5 +43,5 @@ clean :
$(AS) < $< | $(LLC) > $@
%.o: %.s %.ll
- as -xarch=v9 $<
+ /usr/ccs/bin/as -xarch=v9 $<