Skip to content

Commit 9e6c4f2

Browse files
author
Evan Cheng
committed
llc -f option is gone.
llvm-svn: 105727
1 parent 635a89a commit 9e6c4f2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

TEST.beta-compare.Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66
##===----------------------------------------------------------------------===##
77

8-
LLC_OPTS = $(LLCFLAGS) -f -o=/dev/null -stats -time-passes
8+
LLC_OPTS = $(LLCFLAGS) -o=/dev/null -stats -time-passes
99
CURDIR := $(shell cd .; pwd)
1010
PROGDIR := $(PROJ_SRC_ROOT)
1111
RELDIR := $(subst $(PROGDIR),,$(CURDIR))

TEST.llcdbg.Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Output/%.t1a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
2626
$(LOPT) -strip-debug-declare -strip-nondebug $< -f -o $@
2727

2828
Output/%.t1b.s: Output/%.t1a.bc Output/.dir $(LLC)
29-
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
29+
$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
3030

3131
Output/%.first.s: Output/%.t1b.s Output/.dir $(LLC)
3232
grep -v '.long' < $< | grep -v '.byte' | grep -v '.short' | grep -v '.asci' | grep -v '.quad' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## DIE' | grep -v '## $$' | grep -v '^$$' > $@
@@ -35,7 +35,7 @@ Output/%.t2a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
3535
$(LOPT) -strip-nondebug $< -f -o $@
3636

3737
Output/%.t2b.s: Output/%.t2a.bc Output/.dir $(LLC)
38-
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
38+
$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
3939

4040
Output/%.second.s: Output/%.t2b.s Output/.dir
4141
grep -v DEBUG_VALUE < $< | grep -v '.long' | grep -v '.byte' | grep -v '.short' | grep -v '.asci' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## DIE' | grep -v '## $$' | grep -v '.quad' | grep -v '^$$' > $@

TEST.m2regllcdbg.Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Output/%.t1b.bc: Output/%.t1a.bc Output/.dir $(LOPT)
2929
$(LOPT) -mem2reg $< -f -o $@
3030

3131
Output/%.t1c.s: Output/%.t1b.bc Output/.dir $(LLC)
32-
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
32+
$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
3333

3434
Output/%.first.s: Output/%.t1c.s Output/.dir $(LLC)
3535
grep -v '\.long' < $< | grep -v '\.byte' | grep -v '\.short' | grep -v '\.asci' | grep -v '\.quad' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## Extended Op' | grep -v 'Ltmp[0-9]' | grep -v '## DIE' | grep -v '## $$' | grep -v '^#.*' | grep -v '^$$' > $@
@@ -41,7 +41,7 @@ Output/%.t2b.bc: Output/%.t2a.bc Output/.dir $(LOPT)
4141
$(LOPT) -mem2reg $< -f -o $@
4242

4343
Output/%.t2c.s: Output/%.t2b.bc Output/.dir $(LLC)
44-
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
44+
$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
4545

4646
Output/%.second.s: Output/%.t2c.s Output/.dir
4747
grep -v DEBUG_VALUE < $< | grep -v '\.long' | grep -v '\.byte' | grep -v '\.short' | grep -v '\.asci' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## Extended Op' | grep -v 'Ltmp[0-9]' | grep -v '## DIE' | grep -v '## $$' | grep -v '\.quad' | grep -v '^#' | grep -v '^$$' > $@

0 commit comments

Comments
 (0)