summaryrefslogtreecommitdiff
path: root/src/ir/load-utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir/load-utils.h')
-rw-r--r--src/ir/load-utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/load-utils.h b/src/ir/load-utils.h
index 45882dc6c..41b3c69ef 100644
--- a/src/ir/load-utils.h
+++ b/src/ir/load-utils.h
@@ -29,7 +29,7 @@ namespace LoadUtils {
inline bool isSignRelevant(Load* load) {
auto type = load->type;
if (load->type == unreachable) return false;
- return !isWasmTypeFloat(type) && load->bytes < getWasmTypeSize(type);
+ return !isTypeFloat(type) && load->bytes < getTypeSize(type);
}
// check if a load can be signed (which some opts want to do)