fix incorrect escaping in add-cfi.*.awk scripts

gawk 5 complains.
This commit is contained in:
Will Dietz
2020-01-20 15:57:29 -05:00
committed by Rich Felker
parent 91e662d1d9
commit a2e71304f3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ function adjust_sp_offset(delta) {
in_function = 0
}
}
/^\.type [a-zA-Z0-9_]+,\@function/ {
/^\.type [a-zA-Z0-9_]+,@function/ {
functions[substr($2, 1, length($2)-10)] = 1
}
# not interested in assembler directives beyond this, just pass them through
+1 -1
View File
@@ -76,7 +76,7 @@ function adjust_sp_offset(delta) {
in_function = 0
}
}
/^\.type [a-zA-Z0-9_]+,\@function/ {
/^\.type [a-zA-Z0-9_]+,@function/ {
functions[substr($2, 1, length($2)-10)] = 1
}
# not interested in assembler directives beyond this, just pass them through