From 5d82a7eee6568effb8f6daff1a28c80b97a9d109 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Wed, 14 Aug 2024 14:30:56 -0700 Subject: [PATCH] misspell.csv: add another misspelling. Fix by hand, since spellfix is too timid to fix in non-whitespace context? --- misspell.csv | 1 + transform/interrupt.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/misspell.csv b/misspell.csv index 965191c30..f6d58a824 100644 --- a/misspell.csv +++ b/misspell.csv @@ -19,6 +19,7 @@ evironment,environment freqency,frequency frquency,frequency implmented,implemented +interrput,interrupt interrut,interrupt interupt,interrupt measuing,measuring diff --git a/transform/interrupt.go b/transform/interrupt.go index 043eebb84..8c3ed4b51 100644 --- a/transform/interrupt.go +++ b/transform/interrupt.go @@ -137,7 +137,7 @@ func LowerInterrupts(mod llvm.Module) []error { user.ReplaceAllUsesWith(llvm.ConstInt(user.Type(), uint64(num), true)) } - // The runtime/interrput.handle struct can finally be removed. + // The runtime/interrupt.handle struct can finally be removed. // It would probably be eliminated anyway by a globaldce pass but it's // better to do it now to be sure. handler.EraseFromParentAsGlobal()