diff options
author | Fangrui Song <maskray@google.com> | 2021-10-19 09:58:16 -0700 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2021-10-19 09:58:16 -0700 |
commit | 46baeb61e16511f26db1b255e19dc9163f590367 (patch) | |
tree | 7fd1a7ae13de9686d1c850b2caca34be2904579d /scripts | |
parent | 53d19edf7b7ab506b510c9c879a575c8484d075f (diff) | |
download | glibc-46baeb61e16511f26db1b255e19dc9163f590367.zip glibc-46baeb61e16511f26db1b255e19dc9163f590367.tar.gz glibc-46baeb61e16511f26db1b255e19dc9163f590367.tar.bz2 |
glibcextract.py: Place un-assemblable @@@ in a comment
Unlike GCC, Clang parses asm statements and verifies they are valid
instructions/directives. Place the magic @@@ into a comment to avoid
a parse error.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/glibcextract.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/glibcextract.py b/scripts/glibcextract.py index 752ff62..bf49a5e 100644 --- a/scripts/glibcextract.py +++ b/scripts/glibcextract.py @@ -45,7 +45,7 @@ def compute_c_consts(sym_data, cc): continue name = arg[0] value = arg[1] - out_lines.append('asm ("@@@name@@@%s@@@value@@@%%0@@@end@@@" ' + out_lines.append('asm ("/* @@@name@@@%s@@@value@@@%%0@@@end@@@ */" ' ': : \"i\" ((long int) (%s)));' % (name, value)) out_lines.append('}') |