File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ Output/%.first.s: Output/%.t1c.s Output/.dir $(LLC)
38
38
| grep -v ' \.short' \
39
39
| grep -v ' \.asci' \
40
40
| grep -v ' \.quad' \
41
+ | grep -v ' \.align' \
41
42
| grep -v ' ## DW_AT' \
42
43
| grep -v ' ## Abbrev' \
43
44
| grep -v ' ## End Of Children' \
@@ -53,7 +54,11 @@ Output/%.first.s: Output/%.t1c.s Output/.dir $(LLC)
53
54
| grep -v ' debug_loc' \
54
55
| grep -v ' Lpubtypes' \
55
56
| grep -v ' Lpubnames' \
56
- | grep -v ' Linfo_' > $@
57
+ | grep -v ' Linfo_' \
58
+ | grep -v ' Lfunc_begin' \
59
+ | grep -v ' Lfunc_end' \
60
+ | grep -v ' Ldebug_frame_begin' \
61
+ | grep -v ' Ldebug_frame_end' > $@
57
62
58
63
Output/% .t2a.bc : Output/% .linked.rbc Output/.dir $(LOPT )
59
64
$(LOPT ) -strip-nondebug $< -f -o $@
@@ -70,6 +75,7 @@ Output/%.second.s: Output/%.t2c.s Output/.dir
70
75
| grep -v ' \.short' \
71
76
| grep -v ' \.asci' \
72
77
| grep -v ' \.quad' \
78
+ | grep -v ' \.align' \
73
79
| grep -v ' ## DW_AT' \
74
80
| grep -v ' ## Abbrev' \
75
81
| grep -v ' ## End Of Children' \
@@ -85,7 +91,11 @@ Output/%.second.s: Output/%.t2c.s Output/.dir
85
91
| grep -v ' debug_loc' \
86
92
| grep -v ' Lpubtypes' \
87
93
| grep -v ' Lpubnames' \
88
- | grep -v ' Linfo_' > $@
94
+ | grep -v ' Linfo_' \
95
+ | grep -v ' Lfunc_begin' \
96
+ | grep -v ' Lfunc_end' \
97
+ | grep -v ' Ldebug_frame_begin' \
98
+ | grep -v ' Ldebug_frame_end' > $@
89
99
90
100
Output/% .diff : Output/% .first.s Output/% .second.s
91
101
@-if diff $^ > $@ ; then \
You can’t perform that action at this time.
0 commit comments