From 14b5207eb8a8fbe4d2bdf9d0ba3582222f28a1f5 Mon Sep 17 00:00:00 2001
From: Jakub Jelinek <jakub@gcc.gnu.org>
Date: Tue, 3 Jan 2012 16:13:31 +0100
Subject: [PATCH] Fix up last commit.

From-SVN: r182849
---
 gcc/dwarf2out.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 77c021bb00df..d8c18177a8c1 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -20903,10 +20903,7 @@ output_macinfo (void)
 	  break;
 	case DW_MACINFO_end_file:
 	  if (!VEC_empty (macinfo_entry, files))
-	    {
-	      macinfo_entry *file = VEC_last (macinfo_entry, files);
-	      VEC_pop (macinfo_entry, files);
-	    }
+	    VEC_pop (macinfo_entry, files);
 	  break;
 	case DW_MACINFO_define:
 	case DW_MACINFO_undef:
-- 
GitLab