diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-07 04:59:02 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-09-07 04:59:02 +0000 |
commit | a0330a9a39d8e6067a98b980a07d303fbdadb601 (patch) | |
tree | 415ad46f27f8b70fa47a5c123886d6031177eedc | |
parent | 6b1535a078ecb7d6193bb483a0f8811dcbf05b0c (diff) |
fill text on align with nop, not 0
-rw-r--r-- | sys/arch/i386/include/asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/i386/include/asm.h b/sys/arch/i386/include/asm.h index a65cca52b69..da064ff12c2 100644 --- a/sys/arch/i386/include/asm.h +++ b/sys/arch/i386/include/asm.h @@ -69,7 +69,7 @@ #define _ASM_LABEL(x) x #define _ENTRY(x) \ - .text; .align 2; .globl x; .type x,@function; x: + .text; .align 2, 0x90; .globl x; .type x,@function; x: #ifdef PROF # define _PROF_PROLOGUE \ |