summaryrefslogtreecommitdiff
path: root/elf/tst-unique1mod2.c
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2012-08-02 21:04:29 +0200
committerMarek Polacek <polacek@redhat.com>2012-08-02 21:04:29 +0200
commitb67e9372b28ef339581b724c32acf7cf0977001f (patch)
tree7735b77739716800e4266e5177a20e85a9adde3f /elf/tst-unique1mod2.c
parent2747bf9adfd7bee7a44bb75c0279a88a1c89df30 (diff)
Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.
Diffstat (limited to 'elf/tst-unique1mod2.c')
-rw-r--r--elf/tst-unique1mod2.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/elf/tst-unique1mod2.c b/elf/tst-unique1mod2.c
index 4f1fec0087..aa28f29ba9 100644
--- a/elf/tst-unique1mod2.c
+++ b/elf/tst-unique1mod2.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");