Fix typo in last change

Jeff Law law@redhat.com
Thu Dec 13 22:47:00 GMT 2018



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
-------------- next part --------------
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)


More information about the Binutils mailing list