File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
#
6
6
# #===----------------------------------------------------------------------===##
7
7
8
- LLC_OPTS = $(LLCFLAGS ) -f - o=/dev/null -stats -time-passes
8
+ LLC_OPTS = $(LLCFLAGS ) -o=/dev/null -stats -time-passes
9
9
CURDIR := $(shell cd .; pwd)
10
10
PROGDIR := $(PROJ_SRC_ROOT )
11
11
RELDIR := $(subst $(PROGDIR ) ,,$(CURDIR ) )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Output/%.t1a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
26
26
$(LOPT ) -strip-debug-declare -strip-nondebug $< -f -o $@
27
27
28
28
Output/% .t1b.s : Output/% .t1a.bc Output/.dir $(LLC )
29
- $(LLC ) $(LLC_DEBUG_FLAGS ) $< -f - o $@
29
+ $(LLC ) $(LLC_DEBUG_FLAGS ) $< -o $@
30
30
31
31
Output/% .first.s : Output/% .t1b.s Output/.dir $(LLC )
32
32
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)
35
35
$(LOPT ) -strip-nondebug $< -f -o $@
36
36
37
37
Output/% .t2b.s : Output/% .t2a.bc Output/.dir $(LLC )
38
- $(LLC ) $(LLC_DEBUG_FLAGS ) $< -f - o $@
38
+ $(LLC ) $(LLC_DEBUG_FLAGS ) $< -o $@
39
39
40
40
Output/% .second.s : Output/% .t2b.s Output/.dir
41
41
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 ' ^$$' > $@
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Output/%.t1b.bc: Output/%.t1a.bc Output/.dir $(LOPT)
29
29
$(LOPT ) -mem2reg $< -f -o $@
30
30
31
31
Output/% .t1c.s : Output/% .t1b.bc Output/.dir $(LLC )
32
- $(LLC ) $(LLC_DEBUG_FLAGS ) $< -f - o $@
32
+ $(LLC ) $(LLC_DEBUG_FLAGS ) $< -o $@
33
33
34
34
Output/% .first.s : Output/% .t1c.s Output/.dir $(LLC )
35
35
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)
41
41
$(LOPT ) -mem2reg $< -f -o $@
42
42
43
43
Output/% .t2c.s : Output/% .t2b.bc Output/.dir $(LLC )
44
- $(LLC ) $(LLC_DEBUG_FLAGS ) $< -f - o $@
44
+ $(LLC ) $(LLC_DEBUG_FLAGS ) $< -o $@
45
45
46
46
Output/% .second.s : Output/% .t2c.s Output/.dir
47
47
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 ' ^$$' > $@
You can’t perform that action at this time.
0 commit comments