summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/include/debug.h6
1 files changed, 6 insertions, 0 deletions
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;