diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-15 00:51:53 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-15 00:51:53 +0000 |
commit | 2bdd4ca6b6c38367e301042c2247395568c63ebd (patch) | |
tree | 8fb33d2cfb3fc67852327483322747eceefb91ae /elf/dl-runtime.c | |
parent | dd395cf1103ec8e26affcf501791505ded4d31c6 (diff) | |
download | glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.zip glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.tar.gz glibc-2bdd4ca6b6c38367e301042c2247395568c63ebd.tar.bz2 |
Remove miscellaneous bounded-pointers relics in C code.
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r-- | elf/dl-runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 3ca02f5..8284748 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -148,7 +148,7 @@ _dl_fixup ( return elf_machine_fixup_plt (l, result, reloc, rel_addr, value); } -#if !defined PROF && !__BOUNDED_POINTERS__ +#ifndef PROF DL_FIXUP_VALUE_TYPE __attribute ((noinline)) ARCH_FIXUP_ATTRIBUTE _dl_profile_fixup ( |