diff options
Diffstat (limited to 'sysdeps/s390')
-rw-r--r-- | sysdeps/s390/asm-syntax.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/sysdeps/s390/asm-syntax.h b/sysdeps/s390/asm-syntax.h index a1d7b5e74b..98dc6e866e 100644 --- a/sysdeps/s390/asm-syntax.h +++ b/sysdeps/s390/asm-syntax.h @@ -23,15 +23,7 @@ #undef L #ifdef __ELF__ -# ifdef __STDC__ -# define L(body) .L##body -# else -# define L(body) .L/**/body -# endif +# define L(body) .L##body #else -# ifdef __STDC__ -# define L(body) L##body -# else -# define L(body) L/**/body -# endif +# define L(body) L##body #endif |