diff options
Diffstat (limited to 'src/ir/load-utils.h')
-rw-r--r-- | src/ir/load-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/load-utils.h b/src/ir/load-utils.h index a3bf79c60..62c31ef4e 100644 --- a/src/ir/load-utils.h +++ b/src/ir/load-utils.h @@ -28,7 +28,7 @@ namespace LoadUtils { // fill in bits either signed or unsigned wise) inline bool isSignRelevant(Load* load) { auto type = load->type; - if (load->type == unreachable) { + if (load->type == Type::unreachable) { return false; } return !type.isFloat() && load->bytes < type.getByteSize(); |