diff options
Diffstat (limited to 'arch/mips/include/asm/asm.h')
| -rw-r--r-- | arch/mips/include/asm/asm.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/mips/include/asm/asm.h b/arch/mips/include/asm/asm.h index 859cf7048347..81fae23ce7cd 100644 --- a/arch/mips/include/asm/asm.h +++ b/arch/mips/include/asm/asm.h @@ -55,6 +55,7 @@  		.type	symbol, @function;		\  		.ent	symbol, 0;			\  symbol:		.frame	sp, 0, ra;			\ +		.cfi_startproc;				\  		.insn  /* @@ -66,12 +67,14 @@ symbol:		.frame	sp, 0, ra;			\  		.type	symbol, @function;		\  		.ent	symbol, 0;			\  symbol:		.frame	sp, framesize, rpc;		\ +		.cfi_startproc;				\  		.insn  /*   * END - mark end of function   */  #define END(function)					\ +		.cfi_endproc;				\  		.end	function;			\  		.size	function, .-function |