aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 6dfa2520bc..dd734cbf63 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -401,10 +401,14 @@ static LLVMValueRef get_int_overflow_fn(CodeGen *g, TypeTableEntry *type_entry,
}
static LLVMValueRef get_handle_value(CodeGen *g, LLVMValueRef ptr, TypeTableEntry *type) {
- if (handle_is_ptr(type)) {
- return ptr;
+ if (type_has_bits(type)) {
+ if (handle_is_ptr(type)) {
+ return ptr;
+ } else {
+ return LLVMBuildLoad(g->builder, ptr, "");
+ }
} else {
- return LLVMBuildLoad(g->builder, ptr, "");
+ return nullptr;
}
}