[NFC] Fixing pendantic warning extra semicolons.
authorColin LeMahieu <colinl@codeaurora.org>
Wed, 3 Dec 2014 17:36:39 +0000 (17:36 +0000)
committerColin LeMahieu <colinl@codeaurora.org>
Wed, 3 Dec 2014 17:36:39 +0000 (17:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223246 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp

index 8550e137925c904693ece5e6ac769098bf400ba7..6072527cfc88cca0e02a12f0fa136181cd5e21d0 100644 (file)
 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 {