diff options
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index ed36e111ff..a932e381b6 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -2332,7 +2332,7 @@ class InitializeClassVisitor : public CompilationVisitor {              // checks in Thread::AssertThreadSuspensionIsAllowable.              Runtime* const runtime = Runtime::Current();              // Run the class initializer in transaction mode. -            runtime->EnterTransactionMode(klass.Get()); +            runtime->EnterTransactionMode(is_app_image, klass.Get());              bool success = manager_->GetClassLinker()->EnsureInitialized(soa.Self(), klass, true,                                                                           true);              // TODO we detach transaction from runtime to indicate we quit the transactional |