diff options
Diffstat (limited to 'src/ir/load-utils.h')
-rw-r--r-- | src/ir/load-utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ir/load-utils.h b/src/ir/load-utils.h index 36e94d0af..c7e9bad99 100644 --- a/src/ir/load-utils.h +++ b/src/ir/load-utils.h @@ -28,8 +28,9 @@ 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 == unreachable) { return false; + } return !isFloatType(type) && load->bytes < getTypeSize(type); } |