diff options
| author | 2015-01-21 12:43:10 +0000 | |
|---|---|---|
| committer | 2015-01-21 12:43:11 +0000 | |
| commit | 4d2c611bf17ff309abfa152e56c0b98a21ec8787 (patch) | |
| tree | dea746cb0f03b7d7815eac972ff4d0e4f0c39515 /compiler/optimizing/nodes.cc | |
| parent | 1272d4272676005acfcbde25b4eddca64463612b (diff) | |
| parent | c399fdc442db82dfda66e6c25518872ab0f1d24f (diff) | |
Merge "Revert "Fully support pairs in the register allocator.""
Diffstat (limited to 'compiler/optimizing/nodes.cc')
| -rw-r--r-- | compiler/optimizing/nodes.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index 800af409a2..ade31380ec 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -646,7 +646,7 @@ HConstant* HBinaryOperation::TryStaticEvaluation() const { if (GetResultType() == Primitive::kPrimLong) { return new(GetBlock()->GetGraph()->GetArena()) HLongConstant(value); } else { - DCHECK_EQ(GetResultType(), Primitive::kPrimInt); + DCHECK(GetResultType() == Primitive::kPrimInt); return new(GetBlock()->GetGraph()->GetArena()) HIntConstant(value); } } |