aboutsummaryrefslogtreecommitdiff
path: root/src/type.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/type.zig')
-rw-r--r--src/type.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/type.zig b/src/type.zig
index f62c94c469..77ff171776 100644
--- a/src/type.zig
+++ b/src/type.zig
@@ -2157,7 +2157,7 @@ pub const Type = extern union {
const child_type = self.optionalChild(&buf);
if (!child_type.hasCodeGenBits()) return 1;
- if (child_type.zigTypeTag() == .Pointer and !child_type.isCPtr())
+ if (child_type.zigTypeTag() == .Pointer and !child_type.isCPtr() and !child_type.isSlice())
return @divExact(target.cpu.arch.ptrBitWidth(), 8);
// Optional types are represented as a struct with the child type as the first
@@ -2344,7 +2344,7 @@ pub const Type = extern union {
const child_type = ty.optionalChild(&buf);
if (!child_type.hasCodeGenBits()) return 8;
- if (child_type.zigTypeTag() == .Pointer and !child_type.isCPtr())
+ if (child_type.zigTypeTag() == .Pointer and !child_type.isCPtr() and !child_type.isSlice())
return target.cpu.arch.ptrBitWidth();
// Optional types are represented as a struct with the child type as the first