summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/crc64-multiple-digest.t
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-scripts/crc64-multiple-digest.t')
-rw-r--r--ld/testsuite/ld-scripts/crc64-multiple-digest.t45
1 files changed, 0 insertions, 45 deletions
diff --git a/ld/testsuite/ld-scripts/crc64-multiple-digest.t b/ld/testsuite/ld-scripts/crc64-multiple-digest.t
deleted file mode 100644
index 49c1119ad1c..00000000000
--- a/ld/testsuite/ld-scripts/crc64-multiple-digest.t
+++ /dev/null
@@ -1,45 +0,0 @@
-MEMORY {
- rom : ORIGIN = 0x000000, LENGTH = 0x4000
- ram : ORIGIN = 0x008000, LENGTH = 0x1000
-}
-
-_start = 0x000000;
-SECTIONS
-{
- . = 0x1000 + SIZEOF_HEADERS;
- .text ALIGN (0x200) :
-
- {
- FILL(0xFF)
- header = .;
- INCLUDE "begin_tag.inc"
-
- expected = .;
- BYTE(0x6C);
- BYTE(0x40);
- BYTE(0xDF);
- BYTE(0x5F);
- BYTE(0x0B);
- BYTE(0x49);
- BYTE(0x73);
- BYTE(0x47);
-
- QUAD(0x0);
-
- crc64 = .;
- DIGEST "_CRC64A#BE" "CRC64-ECMA" (ecc_start , ecc_end);
- DIGEST "_CRC64B#BE" "CRC64-ISO" (ecc_start , ecc_end);
- QUAD(0x0);
-
- INCLUDE "end_tag.inc"
-
- INCLUDE "crc_data.inc"
-
- INCLUDE "digest_table.inc"
- } > rom
-
- .data : AT (0x008000) { *(.data) } >ram /* NO default AT>rom */
- . = ALIGN(0x20);
- .bss : { *(.bss) } >ram /* NO default AT>rom */
- /DISCARD/ : { *(*) }
-}