diff options
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index ba4242112b..9425ef3267 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -4904,6 +4904,8 @@ class HTypeConversion : public HExpression<1> { dex_pc) { SetRawInputAt(0, input); DCHECK_NE(input->GetType(), result_type); + // Invariant: We should never generate a conversion to a Boolean value. + DCHECK_NE(Primitive::kPrimBoolean, result_type); } HInstruction* GetInput() const { return InputAt(0); } |