summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator.cc
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2015-02-20 10:27:12 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-02-20 10:27:13 +0000
commit76f82fc75f245101828e2fdbbdec676af1717f0b (patch)
tree300049142f90d978526d108ec1c08d28f014110a /compiler/optimizing/code_generator.cc
parente90ccca801a3b7bda094ee0cc145fc62afd8d718 (diff)
parent442b46a087c389a91a0b51547ac9205058432364 (diff)
Merge "Display optimizing compiler's CodeInfo objects in oatdump."
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r--compiler/optimizing/code_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc
index 5b395c8eeb..2a57fdc929 100644
--- a/compiler/optimizing/code_generator.cc
+++ b/compiler/optimizing/code_generator.cc
@@ -620,7 +620,7 @@ void CodeGenerator::RecordPcInfo(HInstruction* instruction, uint32_t dex_pc) {
Location location = locations->GetEnvironmentAt(i);
switch (location.GetKind()) {
case Location::kConstant: {
- DCHECK(current == location.GetConstant());
+ DCHECK_EQ(current, location.GetConstant());
if (current->IsLongConstant()) {
int64_t value = current->AsLongConstant()->GetValue();
stack_map_stream_.AddDexRegisterEntry(DexRegisterMap::kConstant, Low32Bits(value));