1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-24 21:49:29 +03:00

r12951: Tell the MIPSPro compiler to push DEBUG calls out of line.

This commit is contained in:
James Peach
2006-01-15 23:09:17 +00:00
committed by Gerald (Jerry) Carter
parent c11372f4ec
commit a346059912

View File

@ -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;