From 20b5ebe17d8ae07203290d53b586bcc95cd8e956 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Thu, 7 Apr 2016 07:14:41 -0400 Subject: [PATCH 29/91] FIXME: include the closing parenthesis --- gcc/rtl/rtl-frontend.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/rtl/rtl-frontend.c b/gcc/rtl/rtl-frontend.c index 6ade16b..d4ddd1a 100644 --- a/gcc/rtl/rtl-frontend.c +++ b/gcc/rtl/rtl-frontend.c @@ -173,8 +173,9 @@ function_reader::handle_unknown_directive (file_location start_loc, rtx x = read_rtx_code (name); if (!x) return; - /* FIXME: this omits the final closing parenthesis for some reason. */ + int c = read_char (); location_t end_loc = get_current_location (); + unread_char (c); location_t insn_loc = make_location (start_loc, start_loc, end_loc); inform (insn_loc, "input insn"); debug (x); -- 1.8.5.3