mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +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:
parent
d54ac604b3
commit
cf17914f89
@ -19,18 +19,18 @@
|
||||
using namespace llvm;
|
||||
|
||||
HexagonMCInst::HexagonMCInst()
|
||||
: MCInst(), MCID(nullptr), packetBegin(0), packetEnd(0){};
|
||||
: MCInst(), MCID(nullptr), packetBegin(0), packetEnd(0){}
|
||||
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::isPacketEnd() const { return (packetEnd); };
|
||||
void HexagonMCInst::setPacketBegin(bool Y) { packetBegin = Y; };
|
||||
void HexagonMCInst::setPacketEnd(bool Y) { packetEnd = Y; };
|
||||
bool HexagonMCInst::isPacketBegin() const { return (packetBegin); }
|
||||
bool HexagonMCInst::isPacketEnd() const { return (packetEnd); }
|
||||
void HexagonMCInst::setPacketBegin(bool Y) { packetBegin = Y; }
|
||||
void HexagonMCInst::setPacketEnd(bool Y) { packetEnd = Y; }
|
||||
void HexagonMCInst::resetPacket() {
|
||||
setPacketBegin(false);
|
||||
setPacketEnd(false);
|
||||
};
|
||||
}
|
||||
|
||||
// Return the slots used by the insn.
|
||||
unsigned HexagonMCInst::getUnits(const HexagonTargetMachine *TM) const {
|
||||
|
Loading…
Reference in New Issue
Block a user