diff options
Diffstat (limited to 'gcc/config/nextstep.c')
-rw-r--r-- | gcc/config/nextstep.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gcc/config/nextstep.c b/gcc/config/nextstep.c index e909a94..bdf1335 100644 --- a/gcc/config/nextstep.c +++ b/gcc/config/nextstep.c @@ -45,12 +45,12 @@ extern char *get_directive_line (); The result is 1 if the pragma was handled. */ int -handle_pragma (finput, node) - FILE *finput; - tree node; +handle_pragma (p_getc, p_ungetc, name) + int (* p_getc) PROTO ((void)); + void (* p_ungetc) PROTO ((int)); + char * pname; { int retval = 0; - register char *pname; /* Record initial setting of optimize flag, so we can restore it. */ if (!pragma_initialized) @@ -59,11 +59,6 @@ handle_pragma (finput, node) initial_optimize_flag = optimize; } - if (TREE_CODE (node) != IDENTIFIER_NODE) - return 0; - - pname = IDENTIFIER_POINTER (node); - if (strcmp (pname, "CC_OPT_ON") == 0) { optimize = 1, obey_regdecls = 0; |