Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: src/IceInst.h

Issue 412593002: Lower icmp operations between vector values. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Pass -filetype=obj to llvm-mc. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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; }

Powered by Google App Engine
This is Rietveld 408576698