Use one common 'let' expression to set PrintMethod for all immediate operands.
[oota-llvm.git] / lib / Target / Hexagon / HexagonMCInst.h
index 16ea7cf6ed7fe5a5295162e414f64eeba9bd4134..7a16c241ff8fe9885b9ee7c444f5f1c3de60cae9 100644 (file)
@@ -26,15 +26,15 @@ namespace llvm {
     explicit HexagonMCInst(): MCInst(),
                               startPacket(0), endPacket(0) {}
 
-    const MachineInstr* getMI() const { return MachineI; };
+    const MachineInstr* getMI() const { return MachineI; }
 
-    void setMI(const MachineInstr *MI) { MachineI = MI; };
+    void setMI(const MachineInstr *MI) { MachineI = MI; }
 
-    bool isStartPacket() const { return (startPacket); };
-    bool isEndPacket() const { return (endPacket); };
+    bool isStartPacket() const { return (startPacket); }
+    bool isEndPacket() const { return (endPacket); }
 
-    void setStartPacket(bool yes) { startPacket = yes; };
-    void setEndPacket(bool yes) { endPacket = yes; };
+    void setStartPacket(bool yes) { startPacket = yes; }
+    void setEndPacket(bool yes) { endPacket = yes; }
   };
 }