mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
r600g/llvm: Tell the code emitter to ignore KILL and BUNDLE
This commit is contained in:
parent
fa52aeb396
commit
90a42df0d0
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue