Skip to content

Commit

Permalink
[RISCV][NFC] Add braces to 'else' to match braced 'if'
Browse files Browse the repository at this point in the history
  • Loading branch information
frasercrmck committed May 26, 2022
1 parent 51f6358 commit 2c9983f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp
Expand Up @@ -613,8 +613,9 @@ static VSETVLIInfo computeInfoForInstr(const MachineInstr &MI, uint64_t TSFlags,
} else {
InstrInfo.setAVLReg(VLOp.getReg());
}
} else
} else {
InstrInfo.setAVLReg(RISCV::NoRegister);
}
InstrInfo.setVTYPE(VLMul, SEW, TailAgnostic, MaskAgnostic, MaskRegOp, StoreOp,
ScalarMovOp);

Expand Down

0 comments on commit 2c9983f

Please sign in to comment.