소스 검색

r600g/llvm: Tell the code emitter to ignore KILL and BUNDLE

tags/i965-primitive-restart-v2
Tom Stellard 13 년 전
부모
커밋
90a42df0d0
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3
    1
      src/gallium/drivers/radeon/R600CodeEmitter.cpp

+ 3
- 1
src/gallium/drivers/radeon/R600CodeEmitter.cpp 파일 보기

@@ -186,7 +186,9 @@ bool R600CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
emitALUInstr(MI);
}
isReduction = false;
} else if (MI.getOpcode() == AMDIL::RETURN) {
} else if (MI.getOpcode() == AMDIL::RETURN ||
MI.getOpcode() == AMDIL::BUNDLE ||
MI.getOpcode() == AMDIL::KILL) {
continue;
} else {
switch(MI.getOpcode()) {

Loading…
취소
저장