diff options
author | suzuki-koya <[email protected]> | 2020-04-13 10:41:26 +0900 |
---|---|---|
committer | Ayke <[email protected]> | 2020-04-13 16:07:35 +0200 |
commit | e181199305255c5ea90b75b547c7ec11ef3a867f (patch) | |
tree | 5ea9f87fc87fef7929ebc2f64c8a43b5a4bd319a /compiler/llvm.go | |
parent | 7b2377586f414d87981a93f844681fd86d86de27 (diff) | |
download | tinygo-e181199305255c5ea90b75b547c7ec11ef3a867f.tar.gz tinygo-e181199305255c5ea90b75b547c7ec11ef3a867f.zip |
compiler/llvm.go: fix typo
Diffstat (limited to 'compiler/llvm.go')
-rw-r--r-- | compiler/llvm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llvm.go b/compiler/llvm.go index e69c62227..1f8f7f93f 100644 --- a/compiler/llvm.go +++ b/compiler/llvm.go @@ -24,7 +24,7 @@ func getUses(value llvm.Value) []llvm.Value { } // createTemporaryAlloca creates a new alloca in the entry block and adds -// lifetime start infromation in the IR signalling that the alloca won't be used +// lifetime start information in the IR signalling that the alloca won't be used // before this point. // // This is useful for creating temporary allocas for intrinsics. Don't forget to |