repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix alignment of AVX safe area on x86-64.
[glibc.git]
/
elf
/
tst-unique2mod1.c
blob
5e4ac4d68cc6aa7bf4abf6a01c55cc5afd889e4b
1
#include <config.h>
2
3
#ifdef HAVE_ASM_UNIQUE_OBJECT
4
# define S(s) _S (s)
5
# define _S(s) #s
6
7
asm
(
".data;"
8
S
(
ASM_GLOBAL_DIRECTIVE
)
" var
\n
"
9
".type var, "
S
(
ASM_TYPE_DIRECTIVE_PREFIX
)
"gnu_unique_object
\n
"
10
".size var, 4
\n
"
11
"var:.zero 4
\n
"
12
".previous"
);
13
#endif