aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/common/test.ld
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/common/test.ld')
-rw-r--r--benchmarks/common/test.ld10
1 files changed, 5 insertions, 5 deletions
diff --git a/benchmarks/common/test.ld b/benchmarks/common/test.ld
index 7ee56b6..dd32bb1 100644
--- a/benchmarks/common/test.ld
+++ b/benchmarks/common/test.ld
@@ -22,11 +22,11 @@ SECTIONS
/* text: test code section */
. = 0x80000000;
- .text :
- {
- crt.o(.text)
- *(.text)
- }
+ .text.init : { crt.o(.text) }
+
+ .tohost ALIGN(0x1000) : { *(.tohost) }
+
+ .text : { *(.text) }
/* data segment */
.data : { *(.data) }