aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorske <contact@ske.land>2025-12-30 22:24:10 -0300
committerske <contact@ske.land>2025-12-30 22:24:10 -0300
commit2700fa86d647ed27f4f7f008ef7d15299bfd6671 (patch)
treef7212a74742329bf16f0dded3bef5e2cd6036b0b /src
parente4bf5476c3cc218b1265b2cb90c3b4fe3c9d3df8 (diff)
fix typo
Diffstat (limited to 'src')
-rw-r--r--src/llvm_backend_const.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend_const.cpp b/src/llvm_backend_const.cpp
index 9c407be00..8ce2137ab 100644
--- a/src/llvm_backend_const.cpp
+++ b/src/llvm_backend_const.cpp
@@ -539,7 +539,7 @@ gb_internal LLVMValueRef lb_big_int_to_llvm(lbModule *m, Type *original_type, Bi
}
if (big_int_is_neg(a)) {
- // sizeof intead of sz for sign extend to work properly
+ // sizeof instead of sz for sign extend to work properly
for (size_t i = 0; i < sizeof rop64; i++) {
rop[i] = ~rop[i];
}