Date: Mon, 10 Jul 2006 14:33:58 GMT From: Oleksandr Tymoshenko <gonzo@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 101205 for review Message-ID: <200607101433.k6AEXwWG081600@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=101205 Change 101205 by gonzo@gonzo_hq on 2006/07/10 14:33:01 o Added ASM_ENTRY macros and _start was made pure asm entry. Affected files ... .. //depot/projects/mips2/src/sys/mips/include/asm.h#4 edit .. //depot/projects/mips2/src/sys/mips/mips/locore.S#9 edit Differences ... ==== //depot/projects/mips2/src/sys/mips/include/asm.h#4 (text+ko) ==== @@ -137,7 +137,10 @@ .globl sym; .ent sym; sym: .frame sp, 0, ra #define ENTRY(sym) \ - .text; .globl sym; sym: + .text; .globl sym; .ent sym; sym: + +#define ASM_ENTRY(sym) \ + .text; .globl sym; .type sym,@function; sym: #define END(sym) \ .end sym ==== //depot/projects/mips2/src/sys/mips/mips/locore.S#9 (text+ko) ==== @@ -42,7 +42,7 @@ .text GLOBAL(btext) -ENTRY(_start) +ASM_ENTRY(_start) /* * t0: Bits to preserve if set: * Soft reset
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200607101433.k6AEXwWG081600>