summaryrefslogtreecommitdiffstats
path: root/runtime/interpreter
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-05-06 15:26:39 -0700
committerIan Rogers <irogers@google.com>2014-05-06 15:26:39 -0700
commit2fa98e26ddd71ca147869b84fc117751ae6ca92a (patch)
tree543eb93b8e903cf199078e827129728898b6172d /runtime/interpreter
parent47ebd77a6d249403a34d242908749b7446da2a82 (diff)
downloadandroid_art-2fa98e26ddd71ca147869b84fc117751ae6ca92a.tar.gz
android_art-2fa98e26ddd71ca147869b84fc117751ae6ca92a.tar.bz2
android_art-2fa98e26ddd71ca147869b84fc117751ae6ca92a.zip
Fix typo.
Change-Id: I733f83bf8577d3fb41534faaf241f1f120870bec
Diffstat (limited to 'runtime/interpreter')
-rw-r--r--runtime/interpreter/interpreter_goto_table_impl.cc2
-rw-r--r--runtime/interpreter/interpreter_switch_impl.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/interpreter/interpreter_goto_table_impl.cc b/runtime/interpreter/interpreter_goto_table_impl.cc
index 74b7c42c32..e425e9132e 100644
--- a/runtime/interpreter/interpreter_goto_table_impl.cc
+++ b/runtime/interpreter/interpreter_goto_table_impl.cc
@@ -519,7 +519,7 @@ JValue ExecuteGotoImpl(Thread* self, MethodHelper& mh, const DexFile::CodeItem*
// Don't allow finalizable objects to be allocated during a transaction since these can't be
// finalized without a started runtime.
if (transaction_active && obj->GetClass()->IsFinalizable()) {
- AbortTransaction(self, "Allocating finalizable object in transcation: %s",
+ AbortTransaction(self, "Allocating finalizable object in transaction: %s",
PrettyTypeOf(obj).c_str());
HANDLE_PENDING_EXCEPTION();
}
diff --git a/runtime/interpreter/interpreter_switch_impl.cc b/runtime/interpreter/interpreter_switch_impl.cc
index 0da1445dca..9c13973bd7 100644
--- a/runtime/interpreter/interpreter_switch_impl.cc
+++ b/runtime/interpreter/interpreter_switch_impl.cc
@@ -432,7 +432,7 @@ JValue ExecuteSwitchImpl(Thread* self, MethodHelper& mh, const DexFile::CodeItem
// Don't allow finalizable objects to be allocated during a transaction since these can't
// be finalized without a started runtime.
if (transaction_active && obj->GetClass()->IsFinalizable()) {
- AbortTransaction(self, "Allocating finalizable object in transcation: %s",
+ AbortTransaction(self, "Allocating finalizable object in transaction: %s",
PrettyTypeOf(obj).c_str());
HANDLE_PENDING_EXCEPTION();
break;