From 6287cacef2feb129050449d79769b5fd907e1062 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 26 Mar 2012 23:50:12 -0400 Subject: ldso: mark _start hidden There's no need to export this symbol, so mark them all hidden. Signed-off-by: Mike Frysinger --- ldso/ldso/bfin/dl-startup.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ldso/ldso/bfin') diff --git a/ldso/ldso/bfin/dl-startup.h b/ldso/ldso/bfin/dl-startup.h index 76ae15076..cb39112ef 100644 --- a/ldso/ldso/bfin/dl-startup.h +++ b/ldso/ldso/bfin/dl-startup.h @@ -42,8 +42,10 @@ __asm__( " .type __start,@function\n" /* Build system expects a "_start" for the entry point; provide it as it's free to do so with aliases. */ + " .hidden __start\n" " .set _start, __start\n" " .global _start\n" + " .hidden _start\n" "__start:\n" " call .Lcall\n" ".Lcall:\n" -- cgit v1.2.3