summaryrefslogtreecommitdiff
path: root/compiler/optimizing/scheduler_test.cc
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2018-06-27 12:23:54 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-06-27 12:23:54 +0000
commitf07d5617770c37d87447c8bddf105eb0469ab093 (patch)
treee6b15b904e591a3b805b292ce9afd9b0cecbf40d /compiler/optimizing/scheduler_test.cc
parent2dc252e37d4df0c4160cd20b6fc852f5f28b7b87 (diff)
parenta043111e3a2c09b549708a6227a1f54d91da76aa (diff)
Merge "Move instruction_set_ to CompilerOptions."
Diffstat (limited to 'compiler/optimizing/scheduler_test.cc')
-rw-r--r--compiler/optimizing/scheduler_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/scheduler_test.cc b/compiler/optimizing/scheduler_test.cc
index d4cae72c7e..7079e07ae1 100644
--- a/compiler/optimizing/scheduler_test.cc
+++ b/compiler/optimizing/scheduler_test.cc
@@ -192,7 +192,9 @@ class SchedulerTest : public OptimizingUnitTest {
HInstructionScheduling scheduling(graph, target_config.GetInstructionSet());
scheduling.Run(/*only_optimize_loop_blocks*/ false, /*schedule_randomly*/ true);
+ OverrideInstructionSetFeatures(target_config.GetInstructionSet(), "default");
RunCode(target_config,
+ *compiler_options_,
graph,
[](HGraph* graph_arg) { RemoveSuspendChecks(graph_arg); },
has_result, expected);