diff options
Diffstat (limited to 'runtime/stack_map.cc')
-rw-r--r-- | runtime/stack_map.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/stack_map.cc b/runtime/stack_map.cc index 424c608a51..19a854b70b 100644 --- a/runtime/stack_map.cc +++ b/runtime/stack_map.cc @@ -352,7 +352,8 @@ void InlineInfo::Dump(VariableIndentationOutputStream* vios, if (method_info.HasDexFileIndex()) { vios->Stream() << ", is_in_bootclasspath=" << std::boolalpha << (method_info.GetDexFileIndexKind() == MethodInfo::kKindBCP) - << ", dex_file_index=" << std::dec << method_info.GetDexFileIndex(); + << std::noboolalpha << ", dex_file_index=" << std::dec + << method_info.GetDexFileIndex(); } } vios->Stream() << ")\n"; |