summaryrefslogtreecommitdiff
path: root/compiler/dex/mir_graph_test.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-01-26 23:46:42 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-01-26 23:46:42 +0000
commit8c1a3a22542bbe6f42649f1af7c579ddbb8134b2 (patch)
tree35644b91bd58aabc092976d18903d25a812e07eb /compiler/dex/mir_graph_test.cc
parentad3c05971fc4603d9151cc61d2c8289a3e3e4ae0 (diff)
parent0b9203e7996ee1856f620f95d95d8a273c43a3df (diff)
Merge "ART: Some Quick cleanup"
Diffstat (limited to 'compiler/dex/mir_graph_test.cc')
-rw-r--r--compiler/dex/mir_graph_test.cc3
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));
}