| Index: src/compiler/pipeline.cc
|
| diff --git a/src/compiler/pipeline.cc b/src/compiler/pipeline.cc
|
| index ef7aade6107e876aa342f5bf3a6b004b5ced8c8e..190661f2bb8b2db7c91e4165ab3673659fb9a096 100644
|
| --- a/src/compiler/pipeline.cc
|
| +++ b/src/compiler/pipeline.cc
|
| @@ -231,7 +231,7 @@ Schedule* Pipeline::ComputeSchedule(Graph* graph) {
|
| Handle<Code> Pipeline::GenerateCodeForMachineGraph(Linkage* linkage,
|
| Graph* graph,
|
| Schedule* schedule) {
|
| - CHECK(SupportedTarget());
|
| + CHECK(SupportedBackend());
|
| if (schedule == NULL) {
|
| VerifyAndPrintGraph(graph, "Machine");
|
| schedule = ComputeSchedule(graph);
|
| @@ -257,7 +257,7 @@ Handle<Code> Pipeline::GenerateCode(Linkage* linkage, Graph* graph,
|
| DCHECK_NOT_NULL(graph);
|
| DCHECK_NOT_NULL(linkage);
|
| DCHECK_NOT_NULL(schedule);
|
| - DCHECK(SupportedTarget());
|
| + CHECK(SupportedBackend());
|
|
|
| InstructionSequence sequence(linkage, graph, schedule);
|
|
|
|
|