diff options
author | Ian Lance Taylor <iant@golang.org> | 2021-08-13 10:15:45 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2021-08-13 10:38:36 -0700 |
commit | e5c00544cce1feb2c8c4e9aad766315d389c69c4 (patch) | |
tree | 49f9d1974b7e430eed0a1469c5e42e9b537835a6 /libgo | |
parent | 4998404915bba9cb04c438a926cdf7126782a767 (diff) | |
download | gcc-e5c00544cce1feb2c8c4e9aad766315d389c69c4.zip gcc-e5c00544cce1feb2c8c4e9aad766315d389c69c4.tar.gz gcc-e5c00544cce1feb2c8c4e9aad766315d389c69c4.tar.bz2 |
runtime: use C cast syntax in stack.c
Didn't notice earlier because this code is only used on systems that
do not support -fsplit-stack.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/342051
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/stack.c b/libgo/runtime/stack.c index 0c0c30e..65e8fa3 100644 --- a/libgo/runtime/stack.c +++ b/libgo/runtime/stack.c @@ -174,7 +174,7 @@ bool onCurrentStack(uintptr p) nextsp2 = secondary_stack_pointer(); if (nextsp2 != nil) { initialsp2 = (byte*)(void*)(gp->gcinitialsp2); - if (uintptr(initialsp2) < uintptr(nextsp2)) { + if ((uintptr)(initialsp2) < (uintptr)(nextsp2)) { temp = initialsp2; initialsp2 = nextsp2; nextsp2 = temp; |