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]

bison warning fixes


	* config/rl78-parse.y: Don't use deprecated %name-prefix.
	* config/rx-parse.y: Likewise.

diff --git a/gas/config/rl78-parse.y b/gas/config/rl78-parse.y
index 72a6561..dc98168 100644
--- a/gas/config/rl78-parse.y
+++ b/gas/config/rl78-parse.y
@@ -139,7 +139,7 @@ reg_xbc (int reg)
 
 %}
 
-%name-prefix="rl78_"
+%name-prefix "rl78_"
 
 %union {
   int regno;
diff --git a/gas/config/rx-parse.y b/gas/config/rx-parse.y
index c0e3217..72e03b7 100644
--- a/gas/config/rx-parse.y
+++ b/gas/config/rx-parse.y
@@ -130,7 +130,7 @@ static int    sub_op2;
 
 %}
 
-%name-prefix="rx_"
+%name-prefix "rx_"
 
 %union {
   int regno;

-- 
Alan Modra
Australia Development Lab, IBM


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