diff options
| author | 2016-04-20 10:27:15 +0000 | |
|---|---|---|
| committer | 2016-04-20 10:27:15 +0000 | |
| commit | ac6d660672c21a0ace14276e9c356906218b4412 (patch) | |
| tree | bd80228f66a7654c6944561384a9848a68127883 | |
| parent | 44349d990b1356b455b3369dd7c5ab6f172c3a28 (diff) | |
| parent | 5eed0c5d27f091c952704f652cd77c4e3833ad88 (diff) | |
Merge "Fix reference_type_propagation_test."
| -rw-r--r-- | compiler/optimizing/reference_type_propagation_test.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/optimizing/reference_type_propagation_test.cc b/compiler/optimizing/reference_type_propagation_test.cc index 4653e2f8cc..7649b5093c 100644 --- a/compiler/optimizing/reference_type_propagation_test.cc +++ b/compiler/optimizing/reference_type_propagation_test.cc @@ -37,7 +37,11 @@ class ReferenceTypePropagationTest : public CommonCompilerTest { void SetupPropagation(StackHandleScopeCollection* handles) { graph_->InitializeInexactObjectRTI(handles); - propagation_ = new (&allocator_) ReferenceTypePropagation(graph_, handles, true, "test_prop"); + propagation_ = new (&allocator_) ReferenceTypePropagation(graph_, + Handle<mirror::DexCache>(), + handles, + true, + "test_prop"); } // Relay method to merge type in reference type propagation. |