Index: src/IceInst.h |
diff --git a/src/IceInst.h b/src/IceInst.h |
index 0a6c61d75cd3ea79ea19ad966450422c7ae7594d..fd519f75e80b115f56d9fd403dbd5aad3b2bb30c 100644 |
--- a/src/IceInst.h |
+++ b/src/IceInst.h |
@@ -403,7 +403,7 @@ private: |
class InstIcmp : public Inst { |
public: |
enum ICond { |
-#define X(tag, str) tag, |
+#define X(tag, str, isunsigned) tag, |
ICEINSTICMP_TABLE |
#undef X |
_num |
@@ -415,6 +415,7 @@ public: |
InstIcmp(Func, Condition, Dest, Source1, Source2); |
} |
ICond getCondition() const { return Condition; } |
+ bool isUnsigned() const; |
virtual void dump(const Cfg *Func) const; |
static bool classof(const Inst *Inst) { return Inst->getKind() == Icmp; } |