Skip to content

Commit a2e7130

Browse files
dtzWillrichfelker
authored andcommitted
fix incorrect escaping in add-cfi.*.awk scripts
gawk 5 complains.
1 parent 91e662d commit a2e7130

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/add-cfi.i386.awk

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function adjust_sp_offset(delta) {
8181
in_function = 0
8282
}
8383
}
84-
/^\.type [a-zA-Z0-9_]+,\@function/ {
84+
/^\.type [a-zA-Z0-9_]+,@function/ {
8585
functions[substr($2, 1, length($2)-10)] = 1
8686
}
8787
# not interested in assembler directives beyond this, just pass them through

tools/add-cfi.x86_64.awk

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function adjust_sp_offset(delta) {
7676
in_function = 0
7777
}
7878
}
79-
/^\.type [a-zA-Z0-9_]+,\@function/ {
79+
/^\.type [a-zA-Z0-9_]+,@function/ {
8080
functions[substr($2, 1, length($2)-10)] = 1
8181
}
8282
# not interested in assembler directives beyond this, just pass them through

0 commit comments

Comments
 (0)