summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/sizeof.t
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-scripts/sizeof.t')
-rw-r--r--ld/testsuite/ld-scripts/sizeof.t17
1 files changed, 0 insertions, 17 deletions
diff --git a/ld/testsuite/ld-scripts/sizeof.t b/ld/testsuite/ld-scripts/sizeof.t
deleted file mode 100644
index 6244a37b7ac..00000000000
--- a/ld/testsuite/ld-scripts/sizeof.t
+++ /dev/null
@@ -1,17 +0,0 @@
-SECTIONS {
- .text :
- {
- text_start = .;
- tmpdir/sizeof.o
- text_end = .;
- }
- .data :
- {
- data_start = .;
- . = . + SIZEOF(.text);
- data_end = .;
- }
-}
-
-sizeof_text = SIZEOF(.text);
-sizeof_data = SIZEOF(.data);