소스 검색

nv50/ir/ra: also add pre-existing MERGE,SPLIT to constraint list

tags/mesa-9.2-rc1
Christoph Bumiller 12 년 전
부모
커밋
ee431b12ec
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      src/gallium/drivers/nv50/codegen/nv50_ir_ra.cpp

+ 3
- 1
src/gallium/drivers/nv50/codegen/nv50_ir_ra.cpp 파일 보기

@@ -1955,7 +1955,9 @@ RegAlloc::InsertConstraintsPass::visit(BasicBlock *bb)
if (i->src(0).isIndirect(0) && typeSizeof(i->dType) >= 8)
addHazard(i, i->src(0).getIndirect(0));
} else
if (i->op == OP_UNION) {
if (i->op == OP_UNION ||
i->op == OP_MERGE ||
i->op == OP_SPLIT) {
constrList.push_back(i);
}
}

Loading…
취소
저장