diff options
author | 2015-04-15 13:29:02 +0000 | |
---|---|---|
committer | 2015-04-15 13:29:03 +0000 | |
commit | acf9b7b7616a9b104e6f2146051d8e14d9cb9030 (patch) | |
tree | 14ce120d10571c187a2c6bdc87b350cb9a7e3ad6 /compiler/optimizing/optimizing_compiler.cc | |
parent | e1d0b80eef04606e426377f30e7e862b3337e2c6 (diff) | |
parent | 0d9f17de8f21a10702de1510b73e89d07b3b9bbf (diff) |
Merge "Move the linear order to the HGraph."
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 56cea8aba7..efca1a59ba 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -361,7 +361,7 @@ static void AllocateRegisters(HGraph* graph, CodeGenerator* codegen, PassInfoPrinter* pass_info_printer) { PrepareForRegisterAllocation(graph).Run(); - SsaLivenessAnalysis liveness(*graph, codegen); + SsaLivenessAnalysis liveness(graph, codegen); { PassInfo pass_info(SsaLivenessAnalysis::kLivenessPassName, pass_info_printer); liveness.Analyze(); |