[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:
Colin LeMahieu
2014-12-03 17:36:39 +00:00
parent d54ac604b3
commit cf17914f89

View File

@@ -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 {