[MIPS] die(): Properly declare as non-returning
authorMaciej W. Rozycki <macro@linux-mips.org>
Tue, 29 May 2007 14:03:56 +0000 (15:03 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 4 Jul 2007 14:53:15 +0000 (15:53 +0100)
 This marks the declaration of die() correctly, removing "control reaches
end of non-void function" warnings from non-void functions that die() at
the end.

Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
include/asm-mips/ptrace.h

index 1906938285c0fdf5d36de2e8e232bb777e32a635..85b44366343acddece25827d4dcd5cb0d16beae5 100644 (file)
@@ -86,7 +86,7 @@ struct pt_regs {
 
 extern asmlinkage void do_syscall_trace(struct pt_regs *regs, int entryexit);
 
-extern NORET_TYPE void die(const char *, struct pt_regs *);
+extern NORET_TYPE void die(const char *, struct pt_regs *) ATTRIB_NORET;
 
 static inline void die_if_kernel(const char *str, struct pt_regs *regs)
 {