diff options
Diffstat (limited to 'gcc/genopinit.c')
-rw-r--r-- | gcc/genopinit.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/genopinit.c b/gcc/genopinit.c index 2495005..ac4a588 100644 --- a/gcc/genopinit.c +++ b/gcc/genopinit.c @@ -118,9 +118,6 @@ const char *optabs[] = "movstr_optab[(int) %A] = CODE_FOR_%(movstr%a%)", "clrstr_optab[(int) %A] = CODE_FOR_%(clrstr%a%)" }; -/* Allow linking with print-rtl.c. */ -char **insn_name_ptr; - static void gen_insn PROTO((rtx)); static void @@ -363,3 +360,11 @@ from the machine description file `md'. */\n\n"); /* NOTREACHED */ return 0; } + +/* Define this so we can link with print-rtl.o to get debug_rtx function. */ +const char * +get_insn_name (code) + int code; +{ + return NULL; +} |