From 81487b906838c16f3b92d10125a8d0bb5962dc25 Mon Sep 17 00:00:00 2001 From: nwhitehorn Date: Mon, 23 Apr 2012 00:54:06 +0000 Subject: Fix a missed file in r234580: replace the now-obsolete powerpc_mb() with regular mb(). --- libexec/rtld-elf/powerpc/reloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libexec') diff --git a/libexec/rtld-elf/powerpc/reloc.c b/libexec/rtld-elf/powerpc/reloc.c index 979e43e..40a19ea 100644 --- a/libexec/rtld-elf/powerpc/reloc.c +++ b/libexec/rtld-elf/powerpc/reloc.c @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #include "debug.h" @@ -499,7 +499,7 @@ reloc_jmpslot(Elf_Addr *wherep, Elf_Addr target, const Obj_Entry *defobj, jmptab = obj->pltgot + JMPTAB_BASE(N); jmptab[reloff] = target; - powerpc_mb(); /* Order jmptab update before next changes */ + mb(); /* Order jmptab update before next changes */ if (reloff < PLT_EXTENDED_BEGIN) { /* for extended PLT entries, we keep the old code */ -- cgit v1.1