summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-tic6x
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2012-06-15 15:13:32 +0000
committerAlan Modra <amodra@bigpond.net.au>2012-06-15 15:13:32 +0000
commite6ef8cace36b840940fb6d29e715ead89a1d8819 (patch)
tree24f2404d78990a0bef29ee0dd930592a4e69896d /ld/testsuite/ld-tic6x
parent9bad4d1c847c7376fbe536df3ea240f4ad6ac131 (diff)
downloadbinutils-redhat-e6ef8cace36b840940fb6d29e715ead89a1d8819.tar.gz
ld/
* ldlang.h (lang_output_section_statement_type): Add after_end field. (lang_abs_symbol_at_beginning_of, lang_abs_symbol_at_end_of): Delete. (section_for_dot): Declare. * ldlang.c (lang_size_sections_1): Correct comment. (current_section): Move earlier. (current_assign, prefer_next_section): New static vars. (lang_do_assignments_1): Add found_end param. Detect _end assignment to set found_end. Set os->after_end. Set above statics. (lang_do_assignments): Adjust lang_do_assignments_1 call. Init vars. (section_for_dot): New function. (lang_set_startof): Don't make an absolute symbol. (lang_abs_symbol_at_beginning_of, lang_abs_symbol_at_end_of): Delete. * ldexp.c (new_rel_from_abs): Use section_for_dot. * emultempl/lnk960.em (symbol_at_beginning_of): New function. (symbol_at_end_of): Likewise. (lnk960_after_allocation): Use them. * scripttempl/elf.sc: Precede OTHER_GOT_SYMBOLS with . = .; and likewise before __bss_start. ld/testsuite/ Update far too many tests.
Diffstat (limited to 'ld/testsuite/ld-tic6x')
-rw-r--r--ld/testsuite/ld-tic6x/dsbt-be.ld2
-rw-r--r--ld/testsuite/ld-tic6x/dsbt.ld2
-rw-r--r--ld/testsuite/ld-tic6x/shlib-1.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-1b.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-1r.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-1rb.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-app-1.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-app-1b.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-app-1r.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-app-1rb.rd4
-rw-r--r--ld/testsuite/ld-tic6x/shlib-noindex.rd4
-rw-r--r--ld/testsuite/ld-tic6x/static-app-1.rd4
-rw-r--r--ld/testsuite/ld-tic6x/static-app-1b.rd4
-rw-r--r--ld/testsuite/ld-tic6x/static-app-1r.rd4
-rw-r--r--ld/testsuite/ld-tic6x/static-app-1rb.rd4
15 files changed, 28 insertions, 28 deletions
diff --git a/ld/testsuite/ld-tic6x/dsbt-be.ld b/ld/testsuite/ld-tic6x/dsbt-be.ld
index 2a7795caf9..40ba14cd75 100644
--- a/ld/testsuite/ld-tic6x/dsbt-be.ld
+++ b/ld/testsuite/ld-tic6x/dsbt-be.ld
@@ -56,7 +56,7 @@ SECTIONS
.rela.plt : { *(.rela.plt) }
.plt : { *(.plt) }
.text : { *(.text*) }
- PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .);
+ . = .; PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .);
.got : { *(.dsbt) *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
.neardata : { *(.neardata .neardata.* .gnu.linkonce.s.*) }
.rodata : { *(.rodata .rodata.*) }
diff --git a/ld/testsuite/ld-tic6x/dsbt.ld b/ld/testsuite/ld-tic6x/dsbt.ld
index ff162f34c7..fdde8ba574 100644
--- a/ld/testsuite/ld-tic6x/dsbt.ld
+++ b/ld/testsuite/ld-tic6x/dsbt.ld
@@ -56,7 +56,7 @@ SECTIONS
.rela.plt : { *(.rela.plt) }
.plt : { *(.plt) }
.text : { *(.text*) }
- PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .);
+ . = .; PROVIDE_HIDDEN (__c6xabi_DSBT_BASE = .);
.got : { *(.dsbt) *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
.neardata : { *(.neardata .neardata.* .gnu.linkonce.s.*) }
.rodata : { *(.rodata .rodata.*) }
diff --git a/ld/testsuite/ld-tic6x/shlib-1.rd b/ld/testsuite/ld-tic6x/shlib-1.rd
index a5ad39be70..d3bf087a1f 100644
--- a/ld/testsuite/ld-tic6x/shlib-1.rd
+++ b/ld/testsuite/ld-tic6x/shlib-1.rd
@@ -85,7 +85,7 @@ Symbol table '\.dynsym' contains 13 entries:
3: 10000100 0 SECTION LOCAL DEFAULT 10
4: 10000128 0 SECTION LOCAL DEFAULT 11
5: 10000130 0 SECTION LOCAL DEFAULT 12
- 6: 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 00000000 0 NOTYPE WEAK DEFAULT UND b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 1000012c 4 OBJECT GLOBAL DEFAULT 11 g2
@@ -115,7 +115,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 0000817c 0 OBJECT LOCAL DEFAULT ABS _DYNAMIC
.* 1000010c 0 OBJECT LOCAL DEFAULT ABS _GLOBAL_OFFSET_TABLE_
-.* 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 00000000 0 NOTYPE WEAK DEFAULT UND b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-1b.rd b/ld/testsuite/ld-tic6x/shlib-1b.rd
index a5ad39be70..d3bf087a1f 100644
--- a/ld/testsuite/ld-tic6x/shlib-1b.rd
+++ b/ld/testsuite/ld-tic6x/shlib-1b.rd
@@ -85,7 +85,7 @@ Symbol table '\.dynsym' contains 13 entries:
3: 10000100 0 SECTION LOCAL DEFAULT 10
4: 10000128 0 SECTION LOCAL DEFAULT 11
5: 10000130 0 SECTION LOCAL DEFAULT 12
- 6: 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 00000000 0 NOTYPE WEAK DEFAULT UND b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 1000012c 4 OBJECT GLOBAL DEFAULT 11 g2
@@ -115,7 +115,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 0000817c 0 OBJECT LOCAL DEFAULT ABS _DYNAMIC
.* 1000010c 0 OBJECT LOCAL DEFAULT ABS _GLOBAL_OFFSET_TABLE_
-.* 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 00000000 0 NOTYPE WEAK DEFAULT UND b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-1r.rd b/ld/testsuite/ld-tic6x/shlib-1r.rd
index a5ad39be70..d3bf087a1f 100644
--- a/ld/testsuite/ld-tic6x/shlib-1r.rd
+++ b/ld/testsuite/ld-tic6x/shlib-1r.rd
@@ -85,7 +85,7 @@ Symbol table '\.dynsym' contains 13 entries:
3: 10000100 0 SECTION LOCAL DEFAULT 10
4: 10000128 0 SECTION LOCAL DEFAULT 11
5: 10000130 0 SECTION LOCAL DEFAULT 12
- 6: 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 00000000 0 NOTYPE WEAK DEFAULT UND b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 1000012c 4 OBJECT GLOBAL DEFAULT 11 g2
@@ -115,7 +115,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 0000817c 0 OBJECT LOCAL DEFAULT ABS _DYNAMIC
.* 1000010c 0 OBJECT LOCAL DEFAULT ABS _GLOBAL_OFFSET_TABLE_
-.* 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 00000000 0 NOTYPE WEAK DEFAULT UND b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-1rb.rd b/ld/testsuite/ld-tic6x/shlib-1rb.rd
index a5ad39be70..d3bf087a1f 100644
--- a/ld/testsuite/ld-tic6x/shlib-1rb.rd
+++ b/ld/testsuite/ld-tic6x/shlib-1rb.rd
@@ -85,7 +85,7 @@ Symbol table '\.dynsym' contains 13 entries:
3: 10000100 0 SECTION LOCAL DEFAULT 10
4: 10000128 0 SECTION LOCAL DEFAULT 11
5: 10000130 0 SECTION LOCAL DEFAULT 12
- 6: 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 00000000 0 NOTYPE WEAK DEFAULT UND b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 1000012c 4 OBJECT GLOBAL DEFAULT 11 g2
@@ -115,7 +115,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 0000817c 0 OBJECT LOCAL DEFAULT ABS _DYNAMIC
.* 1000010c 0 OBJECT LOCAL DEFAULT ABS _GLOBAL_OFFSET_TABLE_
-.* 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 10000100 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 00000000 0 NOTYPE WEAK DEFAULT UND b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-app-1.rd b/ld/testsuite/ld-tic6x/shlib-app-1.rd
index bd317a8475..6461371c15 100644
--- a/ld/testsuite/ld-tic6x/shlib-app-1.rd
+++ b/ld/testsuite/ld-tic6x/shlib-app-1.rd
@@ -90,7 +90,7 @@ Symbol table '\.dynsym' contains 12 entries:
3: 100000a0 0 SECTION LOCAL DEFAULT 11
4: 100000c0 0 SECTION LOCAL DEFAULT 12
5: 100000cc 0 SECTION LOCAL DEFAULT 13
- 6: 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000a0 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
7: 100000c0 4 OBJECT GLOBAL DEFAULT 12 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 00000000 0 OBJECT WEAK DEFAULT UND g2
@@ -120,7 +120,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 00008178 0 OBJECT LOCAL DEFAULT 7 _DYNAMIC
.* 100000ac 0 OBJECT LOCAL DEFAULT 11 _GLOBAL_OFFSET_TABLE_
-.* 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000a0 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
.* 100000c0 4 OBJECT GLOBAL DEFAULT 12 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-app-1b.rd b/ld/testsuite/ld-tic6x/shlib-app-1b.rd
index 3366a6453c..f4e818847e 100644
--- a/ld/testsuite/ld-tic6x/shlib-app-1b.rd
+++ b/ld/testsuite/ld-tic6x/shlib-app-1b.rd
@@ -90,7 +90,7 @@ Symbol table '\.dynsym' contains 12 entries:
3: 100000a0 0 SECTION LOCAL DEFAULT 11
4: 100000c0 0 SECTION LOCAL DEFAULT 12
5: 100000cc 0 SECTION LOCAL DEFAULT 13
- 6: 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000a0 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
7: 100000c0 4 OBJECT GLOBAL DEFAULT 12 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 00000000 0 OBJECT WEAK DEFAULT UND g2
@@ -120,7 +120,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 00008178 0 OBJECT LOCAL DEFAULT 7 _DYNAMIC
.* 100000ac 0 OBJECT LOCAL DEFAULT 11 _GLOBAL_OFFSET_TABLE_
-.* 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000a0 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
.* 100000c0 4 OBJECT GLOBAL DEFAULT 12 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/shlib-app-1r.rd b/ld/testsuite/ld-tic6x/shlib-app-1r.rd
index a37c4e15ab..b00447c2d2 100644
--- a/ld/testsuite/ld-tic6x/shlib-app-1r.rd
+++ b/ld/testsuite/ld-tic6x/shlib-app-1r.rd
@@ -84,7 +84,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000a0 0 SECTION LOCAL DEFAULT 10
4: 100000c0 0 SECTION LOCAL DEFAULT 11
5: 100000c4 0 SECTION LOCAL DEFAULT 12
- 6: 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000a0 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 100000c0 4 OBJECT GLOBAL DEFAULT 11 b
8: 00000000 0 FUNC GLOBAL DEFAULT UND sub0
9: 100000c4 4 OBJECT GLOBAL DEFAULT 12 a
@@ -110,7 +110,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 00008130 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000ac 0 OBJECT LOCAL DEFAULT 10 _GLOBAL_OFFSET_TABLE_
-.* 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000a0 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 100000c0 4 OBJECT GLOBAL DEFAULT 11 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 FUNC GLOBAL DEFAULT UND sub0
diff --git a/ld/testsuite/ld-tic6x/shlib-app-1rb.rd b/ld/testsuite/ld-tic6x/shlib-app-1rb.rd
index 4a726a54c6..7c2c1106b3 100644
--- a/ld/testsuite/ld-tic6x/shlib-app-1rb.rd
+++ b/ld/testsuite/ld-tic6x/shlib-app-1rb.rd
@@ -84,7 +84,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000a0 0 SECTION LOCAL DEFAULT 10
4: 100000c0 0 SECTION LOCAL DEFAULT 11
5: 100000c4 0 SECTION LOCAL DEFAULT 12
- 6: 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000a0 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
7: 100000c0 4 OBJECT GLOBAL DEFAULT 11 b
8: 00000000 0 FUNC GLOBAL DEFAULT UND sub0
9: 100000c4 4 OBJECT GLOBAL DEFAULT 12 a
@@ -110,7 +110,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 00008134 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000ac 0 OBJECT LOCAL DEFAULT 10 _GLOBAL_OFFSET_TABLE_
-.* 100000a0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000a0 0 NOTYPE LOCAL DEFAULT 10 __c6xabi_DSBT_BASE
.* 100000c0 4 OBJECT GLOBAL DEFAULT 11 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 FUNC GLOBAL DEFAULT UND sub0
diff --git a/ld/testsuite/ld-tic6x/shlib-noindex.rd b/ld/testsuite/ld-tic6x/shlib-noindex.rd
index fc323b2262..3d50e68572 100644
--- a/ld/testsuite/ld-tic6x/shlib-noindex.rd
+++ b/ld/testsuite/ld-tic6x/shlib-noindex.rd
@@ -91,7 +91,7 @@ Symbol table '\.dynsym' contains 13 entries:
3: 10000100 0 SECTION LOCAL DEFAULT 11
4: 10000128 0 SECTION LOCAL DEFAULT 12
5: 10000130 0 SECTION LOCAL DEFAULT 13
- 6: 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 10000100 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
7: 00000000 0 NOTYPE WEAK DEFAULT UND b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 1000012c 4 OBJECT GLOBAL DEFAULT 12 g2
@@ -122,7 +122,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00000000 0 FILE LOCAL DEFAULT ABS .*
.* 00008188 0 OBJECT LOCAL DEFAULT ABS _DYNAMIC
.* 1000010c 0 OBJECT LOCAL DEFAULT ABS _GLOBAL_OFFSET_TABLE_
-.* 10000100 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 10000100 0 NOTYPE LOCAL DEFAULT 11 __c6xabi_DSBT_BASE
.* 00000000 0 NOTYPE WEAK DEFAULT UND b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/static-app-1.rd b/ld/testsuite/ld-tic6x/static-app-1.rd
index ae2daa10b8..ae5bc8d671 100644
--- a/ld/testsuite/ld-tic6x/static-app-1.rd
+++ b/ld/testsuite/ld-tic6x/static-app-1.rd
@@ -77,7 +77,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000e0 0 SECTION LOCAL DEFAULT 9
4: 100000f4 0 SECTION LOCAL DEFAULT 10
5: 100000f4 4 OBJECT LOCAL DEFAULT 10 c
- 6: 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
7: 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 100000e0 4 OBJECT GLOBAL DEFAULT 9 a
@@ -105,7 +105,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00008150 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000f4 4 OBJECT LOCAL DEFAULT 10 c
.* 100000cc 0 OBJECT LOCAL DEFAULT 8 _GLOBAL_OFFSET_TABLE_
-.* 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
.* 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/static-app-1b.rd b/ld/testsuite/ld-tic6x/static-app-1b.rd
index ae2daa10b8..ae5bc8d671 100644
--- a/ld/testsuite/ld-tic6x/static-app-1b.rd
+++ b/ld/testsuite/ld-tic6x/static-app-1b.rd
@@ -77,7 +77,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000e0 0 SECTION LOCAL DEFAULT 9
4: 100000f4 0 SECTION LOCAL DEFAULT 10
5: 100000f4 4 OBJECT LOCAL DEFAULT 10 c
- 6: 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
7: 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 100000e0 4 OBJECT GLOBAL DEFAULT 9 a
@@ -105,7 +105,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00008150 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000f4 4 OBJECT LOCAL DEFAULT 10 c
.* 100000cc 0 OBJECT LOCAL DEFAULT 8 _GLOBAL_OFFSET_TABLE_
-.* 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
.* 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/static-app-1r.rd b/ld/testsuite/ld-tic6x/static-app-1r.rd
index 62c7b69be1..3bc91dd6c2 100644
--- a/ld/testsuite/ld-tic6x/static-app-1r.rd
+++ b/ld/testsuite/ld-tic6x/static-app-1r.rd
@@ -75,7 +75,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000e0 0 SECTION LOCAL DEFAULT 9
4: 100000ec 0 SECTION LOCAL DEFAULT 10
5: 100000ec 4 OBJECT LOCAL DEFAULT 10 c
- 6: 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
7: 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 100000e0 4 OBJECT GLOBAL DEFAULT 9 a
@@ -102,7 +102,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00008138 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000ec 4 OBJECT LOCAL DEFAULT 10 c
.* 100000cc 0 OBJECT LOCAL DEFAULT 8 _GLOBAL_OFFSET_TABLE_
-.* 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
.* 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1
diff --git a/ld/testsuite/ld-tic6x/static-app-1rb.rd b/ld/testsuite/ld-tic6x/static-app-1rb.rd
index 62c7b69be1..3bc91dd6c2 100644
--- a/ld/testsuite/ld-tic6x/static-app-1rb.rd
+++ b/ld/testsuite/ld-tic6x/static-app-1rb.rd
@@ -75,7 +75,7 @@ Symbol table '\.dynsym' contains 10 entries:
3: 100000e0 0 SECTION LOCAL DEFAULT 9
4: 100000ec 0 SECTION LOCAL DEFAULT 10
5: 100000ec 4 OBJECT LOCAL DEFAULT 10 c
- 6: 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+ 6: 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
7: 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
8: 00000000 0 NOTYPE WEAK DEFAULT UND g1
9: 100000e0 4 OBJECT GLOBAL DEFAULT 9 a
@@ -102,7 +102,7 @@ Symbol table '\.symtab' contains [0-9]+ entries:
.* 00008138 0 OBJECT LOCAL DEFAULT 6 _DYNAMIC
.* 100000ec 4 OBJECT LOCAL DEFAULT 10 c
.* 100000cc 0 OBJECT LOCAL DEFAULT 8 _GLOBAL_OFFSET_TABLE_
-.* 100000c0 0 NOTYPE LOCAL DEFAULT ABS __c6xabi_DSBT_BASE
+.* 100000c0 0 NOTYPE LOCAL DEFAULT 8 __c6xabi_DSBT_BASE
.* 100000e8 4 OBJECT GLOBAL DEFAULT 9 b
.* 00020000 0 OBJECT GLOBAL DEFAULT ABS __stacksize
.* 00000000 0 NOTYPE WEAK DEFAULT UND g1