forked from OSchip/llvm-project
Move if() to newline to stop ambiguity over whether it should be else if. NFCI.
Reported in https://www.viva64.com/en/b/0629/ llvm-svn: 359472
This commit is contained in:
parent
a93e77c1c7
commit
6f349d8c39
|
@ -5862,7 +5862,8 @@ void AMDGPUAsmParser::cvtDPP(MCInst &Inst, const OperandVector &Operands) {
|
|||
// VOP2b (v_add_u32, v_sub_u32 ...) dpp use "vcc" token.
|
||||
// Skip it.
|
||||
continue;
|
||||
} if (isRegOrImmWithInputMods(Desc, Inst.getNumOperands())) {
|
||||
}
|
||||
if (isRegOrImmWithInputMods(Desc, Inst.getNumOperands())) {
|
||||
Op.addRegWithFPInputModsOperands(Inst, 2);
|
||||
} else if (Op.isDPPCtrl()) {
|
||||
Op.addImmOperands(Inst, 1);
|
||||
|
|
Loading…
Reference in New Issue