diff options
| author | 2015-05-30 01:54:15 +0000 | |
|---|---|---|
| committer | 2015-05-30 01:54:15 +0000 | |
| commit | 119a8025bbc1c6f4a2d537e9a6d22f33ef31e552 (patch) | |
| tree | 17927f9bfe7d2041b5942c89832d55f9dedb24c5 /compiler/optimizing/optimizing_unit_test.h | |
| parent | 2006b7b9b8e32722bd0d640c62549d8a0ac624b6 (diff) | |
| parent | e401d146407d61eeb99f8d6176b2ac13c4df1e33 (diff) | |
Merge "Move mirror::ArtMethod to native"
Diffstat (limited to 'compiler/optimizing/optimizing_unit_test.h')
| -rw-r--r-- | compiler/optimizing/optimizing_unit_test.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_unit_test.h b/compiler/optimizing/optimizing_unit_test.h index 1fe9346b0f..86c22ed154 100644 --- a/compiler/optimizing/optimizing_unit_test.h +++ b/compiler/optimizing/optimizing_unit_test.h @@ -74,7 +74,8 @@ void RemoveSuspendChecks(HGraph* graph) { inline HGraph* CreateGraph(ArenaAllocator* allocator) { return new (allocator) HGraph( - allocator, *reinterpret_cast<DexFile*>(allocator->Alloc(sizeof(DexFile))), -1, false); + allocator, *reinterpret_cast<DexFile*>(allocator->Alloc(sizeof(DexFile))), -1, false, + kRuntimeISA); } // Create a control-flow graph from Dex instructions. |