aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/libfuzzer_amd64.s
diff options
context:
space:
mode:
authorcui fliter <imcusg@gmail.com>2022-09-28 02:34:31 +0000
committerRobert Griesemer <gri@google.com>2022-09-28 15:13:20 +0000
commit190973eb603614eef33e0a22f420217fc13a2e0a (patch)
tree92c16e8029088ba1bb715c079d412a23a6598ef3 /src/runtime/libfuzzer_amd64.s
parent6e1b769377245f706c9c1471fa95276762e8edbf (diff)
downloadgo-190973eb603614eef33e0a22f420217fc13a2e0a.tar.xz
all: fix some typos
Change-Id: I8b28aebbb9494b2c877139a4584a5a42253e3bea GitHub-Last-Rev: e3703fd3a50b811785df75751472aa3ab098b3d1 GitHub-Pull-Request: golang/go#55902 Reviewed-on: https://go-review.googlesource.com/c/go/+/435617 Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/runtime/libfuzzer_amd64.s')
-rw-r--r--src/runtime/libfuzzer_amd64.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/libfuzzer_amd64.s b/src/runtime/libfuzzer_amd64.s
index 65ac7a325d..435536986b 100644
--- a/src/runtime/libfuzzer_amd64.s
+++ b/src/runtime/libfuzzer_amd64.s
@@ -52,7 +52,7 @@ call:
// manipulating the return address so that libfuzzer's integer compare hooks
// work
// libFuzzer's compare hooks obtain the caller's address from the compiler
-// builtin __builtin_return_adress. Since we invoke the hooks always
+// builtin __builtin_return_address. Since we invoke the hooks always
// from the same native function, this builtin would always return the same
// value. Internally, the libFuzzer hooks call through to the always inlined
// HandleCmp and thus can't be mimicked without patching libFuzzer.