From 63caf1d207d143fe405bbe0cda9aac8deca1171a Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 22 May 2015 01:50:05 -0400 Subject: add .text section directive to all crt_arch.h files missing it i386 and x86_64 versions already had the .text directive; other archs did not. normally, top-level (file scope) __asm__ starts in the .text section anyway, but problems were reported with some versions of clang, and it seems preferable to set it explicitly anyway, at least for the sake of consistency between archs. --- arch/sh/crt_arch.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arch/sh/crt_arch.h') diff --git a/arch/sh/crt_arch.h b/arch/sh/crt_arch.h index a873ffdb..f8907108 100644 --- a/arch/sh/crt_arch.h +++ b/arch/sh/crt_arch.h @@ -1,4 +1,5 @@ __asm__( +".text \n" ".global " START " \n" START ": \n" " mova 1f, r0 \n" -- cgit v1.2.1