diff options
| author | 2017-12-04 21:25:14 +0000 | |
|---|---|---|
| committer | 2017-12-04 21:25:14 +0000 | |
| commit | 367e020d85ee5d3c3c5896a20acb1a7e51a4309a (patch) | |
| tree | dc9ab6e265436807d8cf21b57af4e021b7769f71 /compiler/optimizing/nodes.h | |
| parent | d57fdd82fccfa15933033646c9436313b399d528 (diff) | |
| parent | 0259c24f5e83ab69b259245b645076b864b2e2ca (diff) | |
Merge "Fix a bug in String.charAt() simplification."
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 66d5bfea32..58030df9d4 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -5787,10 +5787,10 @@ class HBoundsCheck FINAL : public HExpression<2> { HBoundsCheck(HInstruction* index, HInstruction* length, uint32_t dex_pc, - bool string_char_at = false) + bool is_string_char_at = false) : HExpression(index->GetType(), SideEffects::CanTriggerGC(), dex_pc) { DCHECK_EQ(DataType::Type::kInt32, DataType::Kind(index->GetType())); - SetPackedFlag<kFlagIsStringCharAt>(string_char_at); + SetPackedFlag<kFlagIsStringCharAt>(is_string_char_at); SetRawInputAt(0, index); SetRawInputAt(1, length); } |