summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver_test.cc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2015-08-28 20:53:02 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-08-28 20:53:02 +0000
commitce209462cc1a7ce235e5ac0d0e6db6b402f73441 (patch)
tree11a5b7771cf4deaae9b0a34cffda6495253fb665 /compiler/driver/compiler_driver_test.cc
parentb00ae4a328de9865c0b56ec45035cf2284705583 (diff)
parented15000a5099f5e230c8ded5ac75692bae272650 (diff)
Merge "Fix some HandleScope bugs and add corresponding checks"
Diffstat (limited to 'compiler/driver/compiler_driver_test.cc')
-rw-r--r--compiler/driver/compiler_driver_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver_test.cc b/compiler/driver/compiler_driver_test.cc
index e35d07da83..a5ace0bf42 100644
--- a/compiler/driver/compiler_driver_test.cc
+++ b/compiler/driver/compiler_driver_test.cc
@@ -210,8 +210,8 @@ TEST_F(CompilerDriverMethodsTest, Selection) {
CompileAll(class_loader);
ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
- StackHandleScope<1> hs(self);
ScopedObjectAccess soa(self);
+ StackHandleScope<1> hs(self);
Handle<mirror::ClassLoader> h_loader(hs.NewHandle(
reinterpret_cast<mirror::ClassLoader*>(self->DecodeJObject(class_loader))));
mirror::Class* klass = class_linker->FindClass(self, "LStaticLeafMethods;", h_loader);