From: Thomas Walker Lynch Date: Wed, 14 May 2025 15:14:39 +0000 (-0700) Subject: small error reporting bug fix, turns off test messages X-Git-Url: https://git.reasoningtechnology.com/style/static/gitweb.css?a=commitdiff_plain;h=dde07a109e16587b14c88eed0e086570ac339bd0;p=RT-gcc small error reporting bug fix, turns off test messages --- diff --git "a/script_gcc_min-12\360\237\226\211/macro.cc" "b/script_gcc_min-12\360\237\226\211/macro.cc" index 11fbbf4..aa7d03a 100644 --- "a/script_gcc_min-12\360\237\226\211/macro.cc" +++ "b/script_gcc_min-12\360\237\226\211/macro.cc" @@ -4140,9 +4140,9 @@ cpp_macro_definition (cpp_reader *pfile, cpp_hashnode *node, // RT extensions //-------------------------------------------------------------------------------- -#define DebugParseClause 1 -#define DebugAssign 1 -#define DebugRTMacro 1 +#define DebugParseClause 0 +#define DebugAssign 0 +#define DebugRTMacro 0 // see directives.cc extern const char *cpp_token_as_text(const cpp_token *token); @@ -4577,7 +4577,7 @@ parse_clause( pfile->state.in_directive = saved_in_directive; } - return PCS_OK; + return status; } /*