summaryrefslogtreecommitdiff
path: root/runtime/quick_exception_handler.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2016-02-25 15:15:58 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-02-25 15:15:59 +0000
commitdcedaaa4dc6d05b6044ecef50f2d9bb95575d49c (patch)
treebb225ab5b2ceae62765e424b8ece66ae66ae9f71 /runtime/quick_exception_handler.cc
parent7d66ac5038a81554d89f79b419e3a80e63ca1f92 (diff)
parent7dc11782ff0a5dffcd8108f256f8975f0b3e8076 (diff)
Merge "Implement << operator for DexRegisterLocation::Kind."
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r--runtime/quick_exception_handler.cc14
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc
index 2dfa860dcb..6317f5e401 100644
--- a/runtime/quick_exception_handler.cc
+++ b/runtime/quick_exception_handler.cc
@@ -204,8 +204,7 @@ static VRegKind ToVRegKind(DexRegisterLocation::Kind kind) {
return VRegKind::kDoubleHiVReg;
default:
- LOG(FATAL) << "Unexpected vreg location "
- << DexRegisterLocation::PrettyDescriptor(kind);
+ LOG(FATAL) << "Unexpected vreg location " << kind;
UNREACHABLE();
}
}
@@ -456,12 +455,11 @@ class DeoptimizeStackVisitor FINAL : public StackVisitor {
}
default: {
LOG(FATAL)
- << "Unexpected location kind"
- << DexRegisterLocation::PrettyDescriptor(
- vreg_map.GetLocationInternalKind(vreg,
- number_of_vregs,
- code_info,
- encoding));
+ << "Unexpected location kind "
+ << vreg_map.GetLocationInternalKind(vreg,
+ number_of_vregs,
+ code_info,
+ encoding);
UNREACHABLE();
}
}