*** empty log message ***

llvm-svn: 913
This commit is contained in:
Vikram S. Adve 2001-10-18 22:47:50 +00:00
parent 59e864eb92
commit c00a4343be
1 changed files with 5 additions and 5 deletions

View File

@ -1,12 +1,12 @@
LLC := ../tools/Debug/llc LLC := ../tools/Debug/llc
AS := ../tools/Debug/as AS := ../tools/Debug/as
LLCOPTS := -dsched y LLCOPTS := -dsched y
ARCHFLAGS = ## -xarch=v9 ARCHFLAGS =
CC = /opt/SUNWspro/bin/cc CC = /opt/SUNWspro/bin/cc
CCFLAGS = -g $(ARCHFLAGS) CCFLAGS = -g -xarch=v9
## CC = gcc ## CC = gcc
## CCFLAGS = -g $(ARCHFLAGS) ## -mcpu=v9 ## CCFLAGS = -g -xarch=v9 ## -mcpu=v9
TESTS := $(wildcard *.ll) TESTS := $(wildcard *.ll)
@ -55,9 +55,9 @@ clean :
%.o: %.s %.o: %.s
$(CC) -c $(CCFLAGS) $< -xarch=v9 $(CC) -c $(CCFLAGS) $<
%: %.o %: %.o
$(CC) -o $@ $< -xarch=v9 $(CC) -o $@ $(CCFLAGS) $<