This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix typo in last change



There's a typo/thinko in the most recent change to dw2gencgi.c; it's
missing a semi-colon after the call to tc_output_cie_extra which
prevents gas from building on aarch64.

Fixed in the obvious way.

Jeff
diff --git a/gas/ChangeLog b/gas/ChangeLog
index dc3aa7ceb8..bac853da98 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-13  Jeff Law  <law@redhat.com>
+
+	* dw2gencfi.c (output_cie): Add missing semicolon in last
+	change.
+
 2018-12-13  Sam Tebbs  <sam.tebbs@arm.com>
 
 	* config/tc-aarch64.h (enum pointer_auth_key,
diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c
index 02d7f3c48a..f9a0b4439e 100644
--- a/gas/dw2gencfi.c
+++ b/gas/dw2gencfi.c
@@ -1863,7 +1863,7 @@ output_cie (struct cie_entry *cie, bfd_boolean eh_frame, int align)
 	out_one ('L');
       out_one ('R');
 #ifdef tc_output_cie_extra
-      tc_output_cie_extra (cie)
+      tc_output_cie_extra (cie);
 #endif
     }
   if (cie->signal_frame)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]