summaryrefslogtreecommitdiff
path: root/runtime/dex_instruction.cc
diff options
context:
space:
mode:
author Igor Murashkin <iam@google.com> 2015-11-03 21:15:50 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-11-03 21:15:50 +0000
commitf33ea7911dadab2e49c4634cb1763f0526047e89 (patch)
treed80b0a7ac8d15a674f1ee2c2c842fce3b9205754 /runtime/dex_instruction.cc
parent530dcc8b74a0f4e5f54e2b2c326580d58594a2f7 (diff)
parent30c475a2046951a81769c2db0b2dad66cd71e189 (diff)
Merge "lambda: Minor capture-variable/liberate-variable clean-up after post-merge reviews."
Diffstat (limited to 'runtime/dex_instruction.cc')
-rw-r--r--runtime/dex_instruction.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_instruction.cc b/runtime/dex_instruction.cc
index 5250b0d79b..438b6b8109 100644
--- a/runtime/dex_instruction.cc
+++ b/runtime/dex_instruction.cc
@@ -333,7 +333,7 @@ std::string Instruction::DumpString(const DexFile* file) const {
if (i != 0) {
os << ", ";
}
- os << "v" << arg[i+2]; // Don't print the pair of vC registers. Pair is implicit.
+ os << "v" << arg[i + 2]; // Don't print the pair of vC registers. Pair is implicit.
}
os << "}";
break;