aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/funcdata.h
diff options
context:
space:
mode:
authorRichard Miller <miller.research@gmail.com>2016-03-14 10:24:19 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-03-14 14:53:29 +0000
commit8a2d6e9f6fd2f9e5b06add7e1c958ee6d3051ca7 (patch)
treee143b9f2b7684d91935fe709cc1cf3dd9523c885 /src/runtime/funcdata.h
parent98b88de56f50ac67eeafcb326ed6a0b198182f59 (diff)
downloadgo-8a2d6e9f6fd2f9e5b06add7e1c958ee6d3051ca7.tar.gz
go-8a2d6e9f6fd2f9e5b06add7e1c958ee6d3051ca7.zip
runtime: fix a typo in asssembly macro GO_RESULTS_INITIALIZED
Fixes #14772 Change-Id: I32f2b6b74de28be406b1306364bc07620a453962 Reviewed-on: https://go-review.googlesource.com/20680 Reviewed-by: David du Colombier <0intro@gmail.com> Reviewed-by: Minux Ma <minux@golang.org> Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/funcdata.h')
-rw-r--r--src/runtime/funcdata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/funcdata.h b/src/runtime/funcdata.h
index 290c23b823..82992e221b 100644
--- a/src/runtime/funcdata.h
+++ b/src/runtime/funcdata.h
@@ -36,7 +36,7 @@
// GO_RESULTS_INITIALIZED indicates that the assembly function
// has initialized the stack space for its results and that those results
// should be considered live for the remainder of the function.
-#define GO_RESULTS_INITIALIZED FUNCDATA PCDATA $PCDATA_StackMapIndex, 1
+#define GO_RESULTS_INITIALIZED PCDATA $PCDATA_StackMapIndex, $1
// NO_LOCAL_POINTERS indicates that the assembly function stores
// no pointers to heap objects in its local stack variables.