[PATCH v3 3/9] Arm: respect line separators for .symver scrubber special case
Jan Beulich
jbeulich@suse.com
Wed Jul 31 11:56:20 GMT 2024
Directives end at "line" (really: statement) separators, not just at
new-line chars.
---
v3: New.
--- a/gas/app.c
+++ b/gas/app.c
@@ -831,7 +831,7 @@ do_scrub_chars (size_t (*get) (char *, s
{
/* We've read the entire pseudo-op. If this is the end
of the line, go back to the beginning. */
- if (IS_NEWLINE (ch))
+ if (IS_NEWLINE (ch) || IS_LINE_SEPARATOR (ch))
symver_state = NULL;
}
}
More information about the Binutils
mailing list