[PATCH v7 2/3] Extract SEH shared helpers into separate file.
Jan Beulich
jbeulich@suse.com
Thu Mar 26 16:34:09 GMT 2026
On 26.03.2026 17:17, Saurabh Jha wrote:
> On 3/19/2026 11:16 AM, Evgeny Karpov wrote:
>> +/* Verify that we're in the context of a seh_proc. */
>> +
>> +static int
>> +verify_context (const char *directive)
>> +{
>> + if (seh_ctx_cur == NULL)
>> + {
>> + as_bad (_("%s used outside of .seh_proc block"), directive);
>> + ignore_rest_of_line ();
>> + return 0;
>> + }
>> + return 1;
>> +}
>> +
>> +/* Skip whitespace and a comma. Error if the comma is not seen. */
>
> Is that an extra space before "Error"?
A full stop in a comment followed by another sentence is supposed to be
followed by two blanks.
Jan
More information about the Binutils
mailing list