diff options
Diffstat (limited to 'gcc/genflags.c')
-rw-r--r-- | gcc/genflags.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/genflags.c b/gcc/genflags.c index d8dbf8791ed..bd3a983fbfd 100644 --- a/gcc/genflags.c +++ b/gcc/genflags.c @@ -33,9 +33,6 @@ struct obstack *rtl_obstack = &obstack; #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free -/* Names for patterns. Need to allow linking with print-rtl. */ -char **insn_name_ptr; - /* Obstacks to remember normal, and call insns. */ static struct obstack call_obstack, normal_obstack; @@ -278,3 +275,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; +} |