From fdb1849a6c1b79d9684947c0e40aff6136ab329b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 3 Jun 2019 20:06:50 +0000 Subject: 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 --- libgo/runtime/go-context.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libgo') 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) -- cgit v1.1