mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
Additional fixes for llvm-as
Unlike GCC, llvm always uses an integrated assembler, which attempts to recognized all `asm` statements written in the C code. glibc uses some syntactically invalid asm statements to emit constants into assembly that are later extracted with a sed or AWK script. This change fixes two such invalid `asm` statements by wrapping the output in a `.ascii` directive.. This does not break the sed/AWK (the same special sequence is output) but it makes the statement syntactically valid. See cf8e3f8757 for a previous fix for the same issue.
This commit is contained in:
parent
144448d566
commit
cb90884046
@ -105,6 +105,6 @@ END {
|
||||
print "";
|
||||
print "#ifdef EMIT_ERR_MAX";
|
||||
print "void dummy (void)"
|
||||
print "{ asm volatile (\" @@@ %0 @@@ \" : : \"i\" (ERR_REMAP (ERR_MAX))); }"
|
||||
print "{ asm volatile (\".ascii \\\" @@@ %0 @@@ \\\"\" : : \"i\" (ERR_REMAP (ERR_MAX))); }"
|
||||
print "#endif";
|
||||
}
|
||||
|
@ -1478,5 +1478,5 @@ const int _sys_nerr_internal = NERR;
|
||||
|
||||
#ifdef EMIT_ERR_MAX
|
||||
void dummy (void)
|
||||
{ asm volatile (" @@@ %0 @@@ " : : "i" (ERR_REMAP (ERR_MAX))); }
|
||||
{ asm volatile (".ascii \" @@@ %0 @@@ \"" : : "i" (ERR_REMAP (ERR_MAX))); }
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user