summaryrefslogtreecommitdiff
path: root/libc/elf/tst-unique2mod1.c
blob: 18b14db43310ff7b1e847e09860029b957dcdc5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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"
     ".size var, 4\n"
     "var:.zero 4\n"
     ".previous");
#endif