From a30f1df5696ccb3490e2eaa3a9ed5e7e487c7b0e Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Sun, 29 Dec 2019 21:13:12 -0800 Subject: Move Type-related functions into Type class (NFC) (#2556) Several type-related functions currently exist outside of `Type` class and thus in the `wasm`, effectively global, namespace. This moves these functions into `Type` class, making them either member functions or static functions. Also this renames `getSize` to `getByteSize` to make it not to be confused with `size`, which returns the number of types in multiple types. This also reorders the order of functions in `wasm-type.cpp` to match that of `wasm-type.h`. --- src/ir/load-utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ir/load-utils.h') diff --git a/src/ir/load-utils.h b/src/ir/load-utils.h index 037f5297b..a3bf79c60 100644 --- a/src/ir/load-utils.h +++ b/src/ir/load-utils.h @@ -31,7 +31,7 @@ inline bool isSignRelevant(Load* load) { if (load->type == unreachable) { return false; } - return !type.isFloat() && load->bytes < getTypeSize(type); + return !type.isFloat() && load->bytes < type.getByteSize(); } // check if a load can be signed (which some opts want to do) -- cgit v1.2.3