summaryrefslogtreecommitdiff
path: root/src/passes/AlignmentLowering.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/AlignmentLowering.cpp')
-rw-r--r--src/passes/AlignmentLowering.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/passes/AlignmentLowering.cpp b/src/passes/AlignmentLowering.cpp
index 05ec2892f..d659fcb69 100644
--- a/src/passes/AlignmentLowering.cpp
+++ b/src/passes/AlignmentLowering.cpp
@@ -103,10 +103,10 @@ struct AlignmentLowering : public WalkerPass<PostWalker<AlignmentLowering>> {
i32),
builder.makeConst(Literal(int32_t(16)))));
} else {
- WASM_UNREACHABLE();
+ WASM_UNREACHABLE("invalid alignment");
}
} else {
- WASM_UNREACHABLE();
+ WASM_UNREACHABLE("invalid size");
}
replaceCurrent(
builder.makeBlock({builder.makeLocalSet(temp, curr->ptr), ret}));
@@ -199,10 +199,10 @@ struct AlignmentLowering : public WalkerPass<PostWalker<AlignmentLowering>> {
builder.makeConst(Literal(int32_t(16)))),
i32));
} else {
- WASM_UNREACHABLE();
+ WASM_UNREACHABLE("invalid alignment");
}
} else {
- WASM_UNREACHABLE();
+ WASM_UNREACHABLE("invalid size");
}
block->finalize();
replaceCurrent(block);