From 846ee0465bcb97d0c036e2366aa92b962d050aef Mon Sep 17 00:00:00 2001 From: Aram Hăvărneanu Date: Sun, 8 Mar 2015 14:20:20 +0100 Subject: runtime: add support for linux/arm64 Change-Id: Ibda6a5bedaff57fd161d63fc04ad260931d34413 Reviewed-on: https://go-review.googlesource.com/7142 Reviewed-by: Russ Cox --- src/runtime/panic1.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/panic1.go') diff --git a/src/runtime/panic1.go b/src/runtime/panic1.go index 4c0eb40585..c14cf27176 100644 --- a/src/runtime/panic1.go +++ b/src/runtime/panic1.go @@ -10,7 +10,7 @@ package runtime //uint32 runtime·panicking; var paniclk mutex -const hasLinkRegister = GOARCH == "arm" || GOARCH == "ppc64" || GOARCH == "ppc64le" +const hasLinkRegister = GOARCH == "arm" || GOARCH == "arm64" || GOARCH == "ppc64" || GOARCH == "ppc64le" // Unwind the stack after a deferred function calls recover // after a panic. Then arrange to continue running as though -- cgit v1.3-5-g9baa