Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
bdd93d52cf43d2991561d70e238bf11e422b794b
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
tst-nodelete-uniquemod.cc
blob: 632b303d582152426f3b55a32b66ea5f2f6295d9 [
file
] [
log
] [
blame
]
extern
int
not_exist
(
void
);
inline
int
make_unique
(
void
)
{
/* Static variables in inline functions and classes
generate STB_GNU_UNIQUE symbols. */
static
int
unique
;
return
++
unique
;
}
int
foo
(
void
)
{
return
make_unique
()
+
not_exist
();
}