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 beaccddcba
commit fe32bd87c2
1 changed files with 2 additions and 0 deletions

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);
}