diff options
Diffstat (limited to 'src/runtime/arch_arm64.go')
-rw-r--r-- | src/runtime/arch_arm64.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/arch_arm64.go b/src/runtime/arch_arm64.go index 500aa8443..373be8840 100644 --- a/src/runtime/arch_arm64.go +++ b/src/runtime/arch_arm64.go @@ -5,6 +5,8 @@ const GOARCH = "arm64" // The bitness of the CPU (e.g. 8, 32, 64). const TargetBits = 64 +const deferExtraRegs = 0 + // Align on word boundary. func align(ptr uintptr) uintptr { return (ptr + 7) &^ 7 |