mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
R600: Do not predicate vector op
llvm-svn: 176507
This commit is contained in:
parent
baf7212bfe
commit
dc20aea70a
@ -356,6 +356,8 @@ R600InstrInfo::isPredicable(MachineInstr *MI) const {
|
|||||||
|
|
||||||
if (MI->getOpcode() == AMDGPU::KILLGT) {
|
if (MI->getOpcode() == AMDGPU::KILLGT) {
|
||||||
return false;
|
return false;
|
||||||
|
} else if (isVector(*MI)) {
|
||||||
|
return false;
|
||||||
} else {
|
} else {
|
||||||
return AMDGPUInstrInfo::isPredicable(MI);
|
return AMDGPUInstrInfo::isPredicable(MI);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user