aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorLulu Cai <cailulu@loongson.cn>2023-10-11 10:20:45 +0800
committerliuzhensong <liuzhensong@loongson.cn>2023-10-24 15:27:39 +0800
commitf87cf663af71e5d78c8d647fa48562102f3b0615 (patch)
tree750778d8b2df5d7f5b8178baba302714e6de0190 /gas
parent8bf3b48f72728208ad09989edfac9e010a62a703 (diff)
downloadfsf-binutils-gdb-f87cf663af71e5d78c8d647fa48562102f3b0615.zip
fsf-binutils-gdb-f87cf663af71e5d78c8d647fa48562102f3b0615.tar.gz
fsf-binutils-gdb-f87cf663af71e5d78c8d647fa48562102f3b0615.tar.bz2
as: fixed internal error when immediate value of relocation overflow.
The as and ld use _bfd_error_handler to output error messages when checking relocation alignment and relocation overflow. However, the abfd value passed by as to the function is NULL, resulting in an internal error. The ld passes a non-null value to the function, so it can output an error message normally.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-loongarch.c2
-rw-r--r--gas/testsuite/gas/loongarch/imm_overflow.d3
-rw-r--r--gas/testsuite/gas/loongarch/imm_overflow.l2
-rw-r--r--gas/testsuite/gas/loongarch/imm_overflow.s4
-rw-r--r--gas/testsuite/gas/loongarch/imm_unalign.d3
-rw-r--r--gas/testsuite/gas/loongarch/imm_unalign.l2
-rw-r--r--gas/testsuite/gas/loongarch/imm_unalign.s6
7 files changed, 21 insertions, 1 deletions
diff --git a/gas/config/tc-loongarch.c b/gas/config/tc-loongarch.c
index b563982..33f3e71 100644
--- a/gas/config/tc-loongarch.c
+++ b/gas/config/tc-loongarch.c
@@ -1234,7 +1234,7 @@ static void fix_reloc_insn (fixS *fixP, bfd_vma reloc_val, char *buf)
insn = bfd_getl32 (buf);
if (!loongarch_adjust_reloc_bitsfield (NULL, howto, &reloc_val))
- as_warn_where (fixP->fx_file, fixP->fx_line, "Reloc overflow");
+ as_bad_where (fixP->fx_file, fixP->fx_line, "Reloc overflow");
insn = (insn & (insn_t)howto->src_mask)
| ((insn & (~(insn_t)howto->dst_mask)) | reloc_val);
diff --git a/gas/testsuite/gas/loongarch/imm_overflow.d b/gas/testsuite/gas/loongarch/imm_overflow.d
new file mode 100644
index 0000000..50a65b7
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_overflow.d
@@ -0,0 +1,3 @@
+#as:
+#source: imm_overflow.s
+#error_output: imm_overflow.l
diff --git a/gas/testsuite/gas/loongarch/imm_overflow.l b/gas/testsuite/gas/loongarch/imm_overflow.l
new file mode 100644
index 0000000..449b3c2
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_overflow.l
@@ -0,0 +1,2 @@
+.*Assembler messages:
+.*Error: Reloc overflow
diff --git a/gas/testsuite/gas/loongarch/imm_overflow.s b/gas/testsuite/gas/loongarch/imm_overflow.s
new file mode 100644
index 0000000..9aac396
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_overflow.s
@@ -0,0 +1,4 @@
+.L1:
+ nop
+ .fill 0x3ffffff, 4, 0
+ b .L1
diff --git a/gas/testsuite/gas/loongarch/imm_unalign.d b/gas/testsuite/gas/loongarch/imm_unalign.d
new file mode 100644
index 0000000..1deb502
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_unalign.d
@@ -0,0 +1,3 @@
+#as:
+#source: imm_unalign.s
+#error_output: imm_unalign.l
diff --git a/gas/testsuite/gas/loongarch/imm_unalign.l b/gas/testsuite/gas/loongarch/imm_unalign.l
new file mode 100644
index 0000000..449b3c2
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_unalign.l
@@ -0,0 +1,2 @@
+.*Assembler messages:
+.*Error: Reloc overflow
diff --git a/gas/testsuite/gas/loongarch/imm_unalign.s b/gas/testsuite/gas/loongarch/imm_unalign.s
new file mode 100644
index 0000000..a853bdc
--- /dev/null
+++ b/gas/testsuite/gas/loongarch/imm_unalign.s
@@ -0,0 +1,6 @@
+.L1:
+ .2byte 0x12
+
+.L2:
+ .fill 1, 4, 0
+ b .L1