From c2f523ea72d6a1dc9319a14ac7a91de7e02901ba Mon Sep 17 00:00:00 2001 From: Nathanael Nerode Date: Tue, 26 Aug 2003 20:34:23 +0000 Subject: [PATCH] inclhack.def (svr4_preproc_lint_on, [...]): New disabled fixes, ported from fixinc.svr4. * fixinc/inclhack.def (svr4_preproc_lint_on, svr4_preproc_lint_off, svr4_preproc_machine): New disabled fixes, ported from fixinc.svr4. From-SVN: r70818 --- gcc/ChangeLog | 6 ++++++ gcc/fixinc/inclhack.def | 28 ++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 620dd7f..bb34433 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-08-26 Nathanael Nerode + + * fixinc/inclhack.def (svr4_preproc_lint_on, + svr4_preproc_lint_off, svr4_preproc_machine): New disabled + fixes, ported from fixinc.svr4. + 2003-08-26 Mark Mitchell * doc/install.texi (Prerequisites): Mention GNU make requirement. diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 4eade8c..38ee399 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -2893,6 +2893,34 @@ fix = { /* + * Some SVR4 systems supposedly use these non-ANSI preprocessor directives. + */ +#ifdef SVR4 +fix = { + hackname = svr4_preproc_lint_on; + select = '#lint\(on\)'; + c_fix = format; + c_fix_arg = 'defined(lint)'; + test_text = "#if #lint(on)"; +}; +fix = { + hackname = svr4_preproc_lint_off; + select = '#lint\(off\)'; + c_fix = format; + c_fix_arg = '!defined(lint)'; + test_text = "#if #lint(off)"; +}; +fix = { + hackname = svr4_preproc_machine; + select = '#(machine|system|cpu)\(([^)]*)\)'; + c_fix = format; + c_fix_arg = 'defined(__%1__)'; + test_text = "#if #machine(i386) || #system(vax) || #cpu(sparc)"; +}; +#endif + + +/* * Fix broken decl of profil present on some svr4 systems. */ fix = { -- 2.7.4