mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-04 05:17:07 +00:00
[NFC] Fixing pendantic warning extra semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -19,18 +19,18 @@
|
|||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
HexagonMCInst::HexagonMCInst()
|
HexagonMCInst::HexagonMCInst()
|
||||||
: MCInst(), MCID(nullptr), packetBegin(0), packetEnd(0){};
|
: MCInst(), MCID(nullptr), packetBegin(0), packetEnd(0){}
|
||||||
HexagonMCInst::HexagonMCInst(MCInstrDesc const &mcid)
|
HexagonMCInst::HexagonMCInst(MCInstrDesc const &mcid)
|
||||||
: MCInst(), MCID(&mcid), packetBegin(0), packetEnd(0){};
|
: MCInst(), MCID(&mcid), packetBegin(0), packetEnd(0){}
|
||||||
|
|
||||||
bool HexagonMCInst::isPacketBegin() const { return (packetBegin); };
|
bool HexagonMCInst::isPacketBegin() const { return (packetBegin); }
|
||||||
bool HexagonMCInst::isPacketEnd() const { return (packetEnd); };
|
bool HexagonMCInst::isPacketEnd() const { return (packetEnd); }
|
||||||
void HexagonMCInst::setPacketBegin(bool Y) { packetBegin = Y; };
|
void HexagonMCInst::setPacketBegin(bool Y) { packetBegin = Y; }
|
||||||
void HexagonMCInst::setPacketEnd(bool Y) { packetEnd = Y; };
|
void HexagonMCInst::setPacketEnd(bool Y) { packetEnd = Y; }
|
||||||
void HexagonMCInst::resetPacket() {
|
void HexagonMCInst::resetPacket() {
|
||||||
setPacketBegin(false);
|
setPacketBegin(false);
|
||||||
setPacketEnd(false);
|
setPacketEnd(false);
|
||||||
};
|
}
|
||||||
|
|
||||||
// Return the slots used by the insn.
|
// Return the slots used by the insn.
|
||||||
unsigned HexagonMCInst::getUnits(const HexagonTargetMachine *TM) const {
|
unsigned HexagonMCInst::getUnits(const HexagonTargetMachine *TM) const {
|
||||||
|
|||||||
Reference in New Issue
Block a user