1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

R600: Do not predicate vector op

llvm-svn: 176507
This commit is contained in:
Vincent Lejeune 2013-03-05 19:12:06 +00:00
parent baf7212bfe
commit dc20aea70a

View File

@ -356,6 +356,8 @@ R600InstrInfo::isPredicable(MachineInstr *MI) const {
if (MI->getOpcode() == AMDGPU::KILLGT) {
return false;
} else if (isVector(*MI)) {
return false;
} else {
return AMDGPUInstrInfo::isPredicable(MI);
}