diff options
| author | 2015-06-02 16:44:43 +0000 | |
|---|---|---|
| committer | 2015-06-02 16:44:44 +0000 | |
| commit | ace571fb8891d1dcb6b628724949e3a620be45b5 (patch) | |
| tree | 77c695b661868452f2e03e7bd645139b739d5be3 /compiler/optimizing/optimizing_unit_test.h | |
| parent | bd7eef17de5f3d25f411702f9f260a96455b4cf7 (diff) | |
| parent | 3d21bdf8894e780d349c481e5c9e29fe1556051c (diff) | |
Merge "Move mirror::ArtMethod to native" into mnc-dev
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 4f8ec65e43..3ef96faab3 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); + allocator, *reinterpret_cast<DexFile*>(allocator->Alloc(sizeof(DexFile))), -1, kRuntimeISA, + false); } // Create a control-flow graph from Dex instructions. |