diff options
author | 2018-03-16 15:00:19 -0700 | |
---|---|---|
committer | 2018-03-16 15:00:19 -0700 | |
commit | 5a0eb0cbeeabda48bfef05df9f59a6fd607e1a1e (patch) | |
tree | 357b3a1a998107de6ec036fc107f897488d24a82 /compiler/optimizing/nodes_vector.h | |
parent | aae3435b642dbf3196ef47e8ec48ec3ca2a84d4b (diff) |
Minor DCHECK bug fix.
Rationale:
Should use the utility to test for SIMD result,
not a hard is vector test.
Test: 623 is regression test for DCHECK fail
Change-Id: I1d7949fa25139f8a3734986d5de7989ed32ff2bd
Diffstat (limited to 'compiler/optimizing/nodes_vector.h')
-rw-r--r-- | compiler/optimizing/nodes_vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes_vector.h b/compiler/optimizing/nodes_vector.h index 523bca8d25..9b114eb1f7 100644 --- a/compiler/optimizing/nodes_vector.h +++ b/compiler/optimizing/nodes_vector.h @@ -325,7 +325,7 @@ class HVecReplicateScalar FINAL : public HVecUnaryOperation { uint32_t dex_pc) : HVecUnaryOperation( kVecReplicateScalar, allocator, scalar, packed_type, vector_length, dex_pc) { - DCHECK(!scalar->IsVecOperation()); + DCHECK(!ReturnsSIMDValue(scalar)); } // A replicate needs to stay in place, since SIMD registers are not |