瀏覽代碼

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…
取消
儲存