aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/link/Coff.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/Coff.zig b/src/link/Coff.zig
index fffa412f03..a03c3a2d3d 100644
--- a/src/link/Coff.zig
+++ b/src/link/Coff.zig
@@ -276,7 +276,7 @@ pub fn createEmpty(
.image_base = options.image_base orelse switch (output_mode) {
.Exe => switch (target.cpu.arch) {
.aarch64 => 0x140000000,
- .x86_64, .x86 => 0x400000,
+ .thumb, .x86_64, .x86 => 0x400000,
else => unreachable,
},
.Lib => 0x10000000,