aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2019-06-03 20:06:50 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2019-06-03 20:06:50 +0000
commitfdb1849a6c1b79d9684947c0e40aff6136ab329b (patch)
tree7ce035ab536835f3639604c0d56949cdd8ccf1af /libgo/runtime
parenta0d87c29e29ba298f80e47fad57431ae3104447f (diff)
downloadgcc-fdb1849a6c1b79d9684947c0e40aff6136ab329b.zip
gcc-fdb1849a6c1b79d9684947c0e40aff6136ab329b.tar.gz
gcc-fdb1849a6c1b79d9684947c0e40aff6136ab329b.tar.bz2
runtime: fix assembly syntax
Some assembler doesn't accept ULL suffix. In fact the suffix is not really necessary. Drop it. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/180217 From-SVN: r271883
Diffstat (limited to 'libgo/runtime')
-rw-r--r--libgo/runtime/go-context.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-context.S b/libgo/runtime/go-context.S
index 0cd2242..8beeebf 100644
--- a/libgo/runtime/go-context.S
+++ b/libgo/runtime/go-context.S
@@ -57,7 +57,7 @@ __go_makecontext:
addq %rcx, %rdx
// Align the SP, and push a dummy return address.
- andq $~0xfULL, %rdx
+ andq $~0xf, %rdx
subq $8, %rdx
movq $0, (%rdx)