diff options
| author | 2015-02-05 08:19:21 +0000 | |
|---|---|---|
| committer | 2015-02-05 08:19:22 +0000 | |
| commit | 911b4be50c379d052dd9e5f9b59ce91df1340453 (patch) | |
| tree | 790b7f3a25b0a31ddddc606b1ba2a24fc8146476 /compiler/driver/compiler_driver.cc | |
| parent | 7e6a918ecfbe786c060bce0eeddd55c4c70f819d (diff) | |
| parent | 1c80becf5406cd6d95dc24bf47a0c5a3809ea281 (diff) | |
Merge "Fix transaction aborting"
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 7451bd58c5..2d8c9d4a9e 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -1929,7 +1929,7 @@ static void InitializeClass(const ParallelCompilationManager* manager, size_t cl *file_log << exception->Dump() << "\n"; } soa.Self()->ClearException(); - transaction.Abort(); + transaction.Rollback(); CHECK_EQ(old_status, klass->GetStatus()) << "Previous class status not restored"; } } |