From ed0c8e056d5f814f6ccc11c045a085d5698b22e3 Mon Sep 17 00:00:00 2001 From: James Peach Date: Sun, 15 Jan 2006 23:09:17 +0000 Subject: r12951: Tell the MIPSPro compiler to push DEBUG calls out of line. (This used to be commit a346059912c05d2b4a27892571d6e89f44907d5c) --- source3/include/debug.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/include') diff --git a/source3/include/debug.h b/source3/include/debug.h index 99c96e6bb1..b6fb50a9ac 100644 --- a/source3/include/debug.h +++ b/source3/include/debug.h @@ -43,6 +43,12 @@ int Debug1( const char *, ... ) PRINTF_ATTRIBUTE(1,2); BOOL dbgtext( const char *, ... ) PRINTF_ATTRIBUTE(1,2); BOOL dbghdr( int level, const char *file, const char *func, int line ); +#if defined(sgi) && (_COMPILER_VERSION >= 730) +#pragma mips_frequency_hint NEVER Debug1 +#pragma mips_frequency_hint NEVER dbgtext +#pragma mips_frequency_hint NEVER dbghdr +#endif + extern XFILE *dbf; extern pstring debugf; -- cgit