diff options
author | Marek Polacek <polacek@redhat.com> | 2012-08-02 21:04:29 +0200 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2012-08-02 21:04:29 +0200 |
commit | b67e9372b28ef339581b724c32acf7cf0977001f (patch) | |
tree | 7735b77739716800e4266e5177a20e85a9adde3f /elf/tst-unique1mod1.c | |
parent | 2747bf9adfd7bee7a44bb75c0279a88a1c89df30 (diff) | |
download | glibc-b67e9372b28ef339581b724c32acf7cf0977001f.zip glibc-b67e9372b28ef339581b724c32acf7cf0977001f.tar.gz glibc-b67e9372b28ef339581b724c32acf7cf0977001f.tar.bz2 |
Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.
Diffstat (limited to 'elf/tst-unique1mod1.c')
-rw-r--r-- | elf/tst-unique1mod1.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/elf/tst-unique1mod1.c b/elf/tst-unique1mod1.c index ccc74fa..f59029d 100644 --- a/elf/tst-unique1mod1.c +++ b/elf/tst-unique1mod1.c @@ -1,12 +1,9 @@ #include <config.h> #ifdef HAVE_ASM_UNIQUE_OBJECT -# define S(s) _S (s) -# define _S(s) #s - asm (".data;" ".globl var\n" - ".type var, " S (ASM_TYPE_DIRECTIVE_PREFIX) "gnu_unique_object\n" + ".type var, %gnu_unique_object\n" ".size var, 4\n" "var:.zero 4\n" ".previous"); |