summaryrefslogtreecommitdiff
path: root/compiler/optimizing
diff options
context:
space:
mode:
author Calin Juravle <calin@google.com> 2015-01-20 12:55:47 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-01-20 12:55:47 +0000
commit48aba6847270221c3f189732ecc69a0258d3aaca (patch)
tree35a9071020a90ca8176d30d2ce7b44a2812aa889 /compiler/optimizing
parente7fd3e3a8e7f10048b7ea558cc525331c97bbefa (diff)
parentd426a8f36d958a251d14e263c9c9e928848df90f (diff)
Merge "Fix register allocator test."
Diffstat (limited to 'compiler/optimizing')
-rw-r--r--compiler/optimizing/register_allocator_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/register_allocator_test.cc b/compiler/optimizing/register_allocator_test.cc
index fa1e01fb0c..cb5010afcd 100644
--- a/compiler/optimizing/register_allocator_test.cc
+++ b/compiler/optimizing/register_allocator_test.cc
@@ -815,7 +815,7 @@ TEST(RegisterAllocatorTest, SpillInactive) {
locations = new (&allocator) LocationSummary(fourth->GetDefinedBy(), LocationSummary::kNoCall);
locations->SetOut(Location::RequiresRegister());
- x86::CodeGeneratorX86 codegen(graph);
+ x86::CodeGeneratorX86 codegen(graph, CompilerOptions());
SsaLivenessAnalysis liveness(*graph, &codegen);
RegisterAllocator register_allocator(&allocator, &codegen, liveness);