]> sourceware.org Git - glibc.git/commitdiff
x86: Improve L to support L(XXX_SYMBOL (YYY, ZZZ))
authorH.J. Lu <hjl.tools@gmail.com>
Sat, 5 Feb 2022 19:06:01 +0000 (11:06 -0800)
committerH.J. Lu <hjl.tools@gmail.com>
Sun, 6 Feb 2022 00:42:17 +0000 (16:42 -0800)
sysdeps/x86/sysdep.h

index 61f1255bfdf600da71750c432ca46ca557a06825..007a1eb13d42ff7cad4aa9f1df6c6c543cb064be 100644 (file)
@@ -111,7 +111,8 @@ enum cf_protection_level
 /* Local label name for asm code. */
 #ifndef L
 /* ELF-like local names start with `.L'.  */
-# define L(name)       .L##name
+# define LOCAL_LABEL(name) .L##name
+# define L(name)       LOCAL_LABEL(name)
 #endif
 
 #define atom_text_section .section ".text.atom", "ax"
This page took 0.049783 seconds and 5 git commands to generate.