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 63358ca8a9..35769e7feb 100644
--- a/src/link/Coff.zig
+++ b/src/link/Coff.zig
@@ -2181,7 +2181,7 @@ pub fn getEntryPoint(self: Coff) ?SymbolWithLoc {
pub fn getImageBase(self: Coff) u64 {
const image_base: u64 = self.base.options.image_base_override orelse switch (self.base.options.output_mode) {
.Exe => switch (self.base.options.target.cpu.arch) {
- .aarch64 => 0x140000000,
+ .aarch64 => @as(u64, 0x140000000),
.x86_64, .i386 => 0x400000,
else => unreachable, // unsupported target architecture
},