aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarius Galis <darius.galis@cyberthorstudios.com>2021-08-11 14:01:55 +0100
committerNick Clifton <nickc@redhat.com>2021-08-11 14:01:55 +0100
commit12612c24a6bd5cdcfb60cd254295b21a5ec8594a (patch)
tree570ac351aae80c4fc1b8589a2cc802845afceb00
parent5393ca689ae6801ffa4eba377d1f3b97f496b49b (diff)
downloadfsf-binutils-gdb-12612c24a6bd5cdcfb60cd254295b21a5ec8594a.zip
fsf-binutils-gdb-12612c24a6bd5cdcfb60cd254295b21a5ec8594a.tar.gz
fsf-binutils-gdb-12612c24a6bd5cdcfb60cd254295b21a5ec8594a.tar.bz2
Fix a typo in the RX asse,bler. The Double-precision floating-point exception handling control register name is DECNT not DCENT.
* config/rx-parse.y (DECNT): Fixed typo. * testsuite/gas/rx/dpopm.sm (DECNT): Fixed typo. * testsuite/gas/rx/dpushm.sm (DECNT): Fixed typo. * testsuite/gas/rx/macros.inc (DECNT): Fixed typo.
-rw-r--r--gas/ChangeLog7
-rw-r--r--gas/config/rx-parse.y2
-rw-r--r--gas/testsuite/gas/rx/dpopm.sm2
-rw-r--r--gas/testsuite/gas/rx/dpushm.sm2
-rw-r--r--gas/testsuite/gas/rx/macros.inc2
5 files changed, 11 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 098353a..a5d5fbc 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,10 @@
+2021-08-11 Darius Galis <darius.galis@cyberthorstudios.com>
+
+ * config/rx-parse.y (DECNT): Fixed typo.
+ * testsuite/gas/rx/dpopm.sm (DECNT): Fixed typo.
+ * testsuite/gas/rx/dpushm.sm (DECNT): Fixed typo.
+ * testsuite/gas/rx/macros.inc (DECNT): Fixed typo.
+
2021-08-11 Nick Clifton <nickc@redhat.com>
PR 28215
diff --git a/gas/config/rx-parse.y b/gas/config/rx-parse.y
index dfb0484..388e5ee 100644
--- a/gas/config/rx-parse.y
+++ b/gas/config/rx-parse.y
@@ -1316,7 +1316,7 @@ token_table[] =
{ "DPSW", DCREG, 0 },
{ "DCMR", DCREG, 1 },
- { "DCENT", DCREG, 2 },
+ { "DECNT", DCREG, 2 },
{ "DEPC", DCREG, 3 },
{ "DCR0", DCREG, 0 },
{ "DCR1", DCREG, 1 },
diff --git a/gas/testsuite/gas/rx/dpopm.sm b/gas/testsuite/gas/rx/dpopm.sm
index 6c779bd..019c308 100644
--- a/gas/testsuite/gas/rx/dpopm.sm
+++ b/gas/testsuite/gas/rx/dpopm.sm
@@ -1,2 +1,2 @@
dpopm.d {dregPlo}-{dregPhi}
- dpopm.l {dpsw;dcmr}-{depc;dcent}
+ dpopm.l {dpsw;dcmr}-{depc;decnt}
diff --git a/gas/testsuite/gas/rx/dpushm.sm b/gas/testsuite/gas/rx/dpushm.sm
index a6093c4..4134335 100644
--- a/gas/testsuite/gas/rx/dpushm.sm
+++ b/gas/testsuite/gas/rx/dpushm.sm
@@ -1,2 +1,2 @@
dpushm.d {dregPlo}-{dregPhi}
- dpushm.l {dpsw;dcmr}-{depc;dcent}
+ dpushm.l {dpsw;dcmr}-{depc;decnt}
diff --git a/gas/testsuite/gas/rx/macros.inc b/gas/testsuite/gas/rx/macros.inc
index 7fc4c42..329850f 100644
--- a/gas/testsuite/gas/rx/macros.inc
+++ b/gas/testsuite/gas/rx/macros.inc
@@ -9,7 +9,7 @@ macro pswf {U;I;O;S;Z;C}
macro dreg {dr0;dr15}
macro dregh {drh0;drh15}
macro dregl {drl0;drl15}
-macro dcreg {dpsw;dcmr;dcent;depc}
+macro dcreg {dpsw;dcmr;decnt;depc}
macro dregPlo {dr1;dr7}
macro dregPhi {dr8;dr14}