diff options
Diffstat (limited to 'compiler/dex/mir_graph_test.cc')
-rw-r--r-- | compiler/dex/mir_graph_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/dex/mir_graph_test.cc b/compiler/dex/mir_graph_test.cc index 8a7e71f4af..b3ad0407e2 100644 --- a/compiler/dex/mir_graph_test.cc +++ b/compiler/dex/mir_graph_test.cc @@ -14,6 +14,7 @@ * limitations under the License. */ +#include "compiler_ir.h" #include "mir_graph.h" #include "gtest/gtest.h" @@ -148,7 +149,7 @@ class TopologicalSortOrderTest : public testing::Test { TopologicalSortOrderTest() : pool_(), - cu_(&pool_) { + cu_(&pool_, kRuntimeISA, nullptr, nullptr) { cu_.mir_graph.reset(new MIRGraph(&cu_, &cu_.arena)); } |