diff options
author | Marek Polacek <polacek@redhat.com> | 2012-02-07 00:41:11 +0100 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2012-02-07 00:41:11 +0100 |
commit | 622c86f48086403c889a2a16f2f09badde0eac7d (patch) | |
tree | 52a39629345270d5b4f4777cdf548f3ddd5314fc /sysdeps/s390 | |
parent | d4a54ac6494dd47a9c3d490e02897c69c0432341 (diff) | |
download | glibc-622c86f48086403c889a2a16f2f09badde0eac7d.tar glibc-622c86f48086403c889a2a16f2f09badde0eac7d.tar.gz glibc-622c86f48086403c889a2a16f2f09badde0eac7d.tar.bz2 glibc-622c86f48086403c889a2a16f2f09badde0eac7d.zip |
Remove __ELF__ conditionals
Diffstat (limited to 'sysdeps/s390')
-rw-r--r-- | sysdeps/s390/asm-syntax.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/s390/asm-syntax.h b/sysdeps/s390/asm-syntax.h index 98dc6e866e..abb46881be 100644 --- a/sysdeps/s390/asm-syntax.h +++ b/sysdeps/s390/asm-syntax.h @@ -22,8 +22,4 @@ #define ALIGN(log) .align 1<<log #undef L -#ifdef __ELF__ -# define L(body) .L##body -#else -# define L(body) L##body -#endif +#define L(body) .L##body |