summaryrefslogtreecommitdiff
path: root/compiler/optimizing/ssa_test.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2017-09-26 09:15:35 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-09-26 09:15:35 +0000
commit4894cdd8ebd4624f0f09c1545c1bbf7ff0bb5bc3 (patch)
treed2e2cc57dd046e2bd06cb3cc67e2e9f6950dac87 /compiler/optimizing/ssa_test.cc
parentd796c61d303424798c8cd35fabb77760255ea2aa (diff)
parent0ebe0d83138bba1996e9c8007969b5381d972b32 (diff)
Merge "ART: Introduce compiler data type."
Diffstat (limited to 'compiler/optimizing/ssa_test.cc')
-rw-r--r--compiler/optimizing/ssa_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc
index f69f417efc..ac998dbcab 100644
--- a/compiler/optimizing/ssa_test.cc
+++ b/compiler/optimizing/ssa_test.cc
@@ -89,7 +89,7 @@ static void TestCode(const uint16_t* data, const char* expected) {
// Test that phis had their type set.
for (HBasicBlock* block : graph->GetBlocks()) {
for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
- ASSERT_NE(it.Current()->GetType(), Primitive::kPrimVoid);
+ ASSERT_NE(it.Current()->GetType(), DataType::Type::kVoid);
}
}