aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-07-27 18:03:49 +0930
committerAlan Modra <amodra@gmail.com>2023-07-27 23:38:14 +0930
commit2902e6682d63183d373f385d4efaf8597fd22544 (patch)
tree040aceac580c1c1f50ed736e6aad0dadbe401158 /ld/testsuite/ld-scripts
parentf1036ada3bca6f88340a0a1fbd8b103a3e0cdc2d (diff)
downloadgdb-2902e6682d63183d373f385d4efaf8597fd22544.zip
gdb-2902e6682d63183d373f385d4efaf8597fd22544.tar.gz
gdb-2902e6682d63183d373f385d4efaf8597fd22544.tar.bz2
/DISCARD/ in ld testsuite
The canonical form to discard all sections not mentioned earlier in the script is /DISCARD/ : { *(*) } not /DISCARD/ : { *(.*) } ".*" happens to work with the usual section names starting with a dot, but let's not promote something not quite right.
Diffstat (limited to 'ld/testsuite/ld-scripts')
-rw-r--r--ld/testsuite/ld-scripts/empty-address-1.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-2a.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-2b.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-3a.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-3b.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-3c.t2
-rw-r--r--ld/testsuite/ld-scripts/empty-address-4.t2
-rw-r--r--ld/testsuite/ld-scripts/phdrs.t2
-rw-r--r--ld/testsuite/ld-scripts/phdrs2.t2
-rw-r--r--ld/testsuite/ld-scripts/phdrs3.t2
-rw-r--r--ld/testsuite/ld-scripts/phdrs3a.t2
-rw-r--r--ld/testsuite/ld-scripts/provide-9.t2
-rw-r--r--ld/testsuite/ld-scripts/sort-file.t2
-rw-r--r--ld/testsuite/ld-scripts/sort.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_a.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_a_a.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_a_n.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_n.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_n_a.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_b_n_n.t2
-rw-r--r--ld/testsuite/ld-scripts/sort_no.t2
21 files changed, 21 insertions, 21 deletions
diff --git a/ld/testsuite/ld-scripts/empty-address-1.t b/ld/testsuite/ld-scripts/empty-address-1.t
index a24f25a..a579683 100644
--- a/ld/testsuite/ld-scripts/empty-address-1.t
+++ b/ld/testsuite/ld-scripts/empty-address-1.t
@@ -8,5 +8,5 @@ SECTIONS
}
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-2a.t b/ld/testsuite/ld-scripts/empty-address-2a.t
index 0ab29a4..bc53115 100644
--- a/ld/testsuite/ld-scripts/empty-address-2a.t
+++ b/ld/testsuite/ld-scripts/empty-address-2a.t
@@ -4,5 +4,5 @@ SECTIONS
.data : { *(.data) }
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-2b.t b/ld/testsuite/ld-scripts/empty-address-2b.t
index c6d1e52..788cd65 100644
--- a/ld/testsuite/ld-scripts/empty-address-2b.t
+++ b/ld/testsuite/ld-scripts/empty-address-2b.t
@@ -8,5 +8,5 @@ SECTIONS
}
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-3a.t b/ld/testsuite/ld-scripts/empty-address-3a.t
index 28767a1..42128f8 100644
--- a/ld/testsuite/ld-scripts/empty-address-3a.t
+++ b/ld/testsuite/ld-scripts/empty-address-3a.t
@@ -7,5 +7,5 @@ SECTIONS
}
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-3b.t b/ld/testsuite/ld-scripts/empty-address-3b.t
index 6da2421..2b9e27d 100644
--- a/ld/testsuite/ld-scripts/empty-address-3b.t
+++ b/ld/testsuite/ld-scripts/empty-address-3b.t
@@ -8,5 +8,5 @@ SECTIONS
}
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-3c.t b/ld/testsuite/ld-scripts/empty-address-3c.t
index 0829c58..13fe34e 100644
--- a/ld/testsuite/ld-scripts/empty-address-3c.t
+++ b/ld/testsuite/ld-scripts/empty-address-3c.t
@@ -8,5 +8,5 @@ SECTIONS
}
__data_end = .;
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/empty-address-4.t b/ld/testsuite/ld-scripts/empty-address-4.t
index f25bbfe..bb0c2f6 100644
--- a/ld/testsuite/ld-scripts/empty-address-4.t
+++ b/ld/testsuite/ld-scripts/empty-address-4.t
@@ -7,5 +7,5 @@ SECTIONS
ASSERT (. < 0x400, oops);
}
.bss : { *(.bss) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/phdrs.t b/ld/testsuite/ld-scripts/phdrs.t
index 283e30c..1267322 100644
--- a/ld/testsuite/ld-scripts/phdrs.t
+++ b/ld/testsuite/ld-scripts/phdrs.t
@@ -12,5 +12,5 @@ SECTIONS
. = 0x800000 + SIZEOF_HEADERS;
.text : { *(.text) } :text
.data : { *(.data) } :data
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/phdrs2.t b/ld/testsuite/ld-scripts/phdrs2.t
index bccbcec..d5a4c2a 100644
--- a/ld/testsuite/ld-scripts/phdrs2.t
+++ b/ld/testsuite/ld-scripts/phdrs2.t
@@ -19,5 +19,5 @@ SECTIONS
LONG(EMPTY_START) ;
} : Bar
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/phdrs3.t b/ld/testsuite/ld-scripts/phdrs3.t
index 4bd4e85..d86e206 100644
--- a/ld/testsuite/ld-scripts/phdrs3.t
+++ b/ld/testsuite/ld-scripts/phdrs3.t
@@ -12,5 +12,5 @@ SECTIONS
. = 0x800000 + SIZEOF_HEADERS;
.text : { *(.text) } :text
.data : { *(.data) } :data
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/phdrs3a.t b/ld/testsuite/ld-scripts/phdrs3a.t
index c07ff34..4853b7b 100644
--- a/ld/testsuite/ld-scripts/phdrs3a.t
+++ b/ld/testsuite/ld-scripts/phdrs3a.t
@@ -11,5 +11,5 @@ SECTIONS
. = 0x800000 + SIZEOF_HEADERS;
.text : { *(.text) } :text
.data : { *(.data) } :data
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/provide-9.t b/ld/testsuite/ld-scripts/provide-9.t
index 00d906a..b26051a 100644
--- a/ld/testsuite/ld-scripts/provide-9.t
+++ b/ld/testsuite/ld-scripts/provide-9.t
@@ -20,6 +20,6 @@ SECTIONS
*(.bss .bss.*)
} >FOO
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort-file.t b/ld/testsuite/ld-scripts/sort-file.t
index 559a000..f46f574 100644
--- a/ld/testsuite/ld-scripts/sort-file.t
+++ b/ld/testsuite/ld-scripts/sort-file.t
@@ -2,5 +2,5 @@ SECTIONS
{
.text : { SORT_BY_NAME(*)(.text*) }
.data : { *(.data*) }
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort.t b/ld/testsuite/ld-scripts/sort.t
index c53481f..a7bb88f 100644
--- a/ld/testsuite/ld-scripts/sort.t
+++ b/ld/testsuite/ld-scripts/sort.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(.text .text.*)}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_a.t b/ld/testsuite/ld-scripts/sort_b_a.t
index cbfd3c3..c53f6c2 100644
--- a/ld/testsuite/ld-scripts/sort_b_a.t
+++ b/ld/testsuite/ld-scripts/sort_b_a.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_ALIGNMENT(.text*))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_a_a.t b/ld/testsuite/ld-scripts/sort_b_a_a.t
index 359cdff..df0b190 100644
--- a/ld/testsuite/ld-scripts/sort_b_a_a.t
+++ b/ld/testsuite/ld-scripts/sort_b_a_a.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_ALIGNMENT(SORT_BY_ALIGNMENT(.text*)))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_a_n.t b/ld/testsuite/ld-scripts/sort_b_a_n.t
index 04c3917..f5661bb 100644
--- a/ld/testsuite/ld-scripts/sort_b_a_n.t
+++ b/ld/testsuite/ld-scripts/sort_b_a_n.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.text*)))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_n.t b/ld/testsuite/ld-scripts/sort_b_n.t
index 26c2b6e..344d7f3 100644
--- a/ld/testsuite/ld-scripts/sort_b_n.t
+++ b/ld/testsuite/ld-scripts/sort_b_n.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_NAME(.text*))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_n_a.t b/ld/testsuite/ld-scripts/sort_b_n_a.t
index 49cbdd3..532ba52 100644
--- a/ld/testsuite/ld-scripts/sort_b_n_a.t
+++ b/ld/testsuite/ld-scripts/sort_b_n_a.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_NAME(SORT_BY_ALIGNMENT(.text*)))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_b_n_n.t b/ld/testsuite/ld-scripts/sort_b_n_n.t
index b4eabfe..b8b0914 100644
--- a/ld/testsuite/ld-scripts/sort_b_n_n.t
+++ b/ld/testsuite/ld-scripts/sort_b_n_n.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(SORT_BY_NAME(SORT_BY_NAME(.text*)))}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}
diff --git a/ld/testsuite/ld-scripts/sort_no.t b/ld/testsuite/ld-scripts/sort_no.t
index d797c79..7ddc352 100644
--- a/ld/testsuite/ld-scripts/sort_no.t
+++ b/ld/testsuite/ld-scripts/sort_no.t
@@ -1,5 +1,5 @@
SECTIONS
{
.text : {*(.text*)}
- /DISCARD/ : { *(.*) }
+ /DISCARD/ : { *(*) }
}