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

Unified Diff: src/IceInst.h

Issue 296823013: Fix g++ -pedantic warnings (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Remove the empty string concatenation since macro args won't be empty Created 6 years, 7 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
« no previous file with comments | « no previous file | src/IceInstX8632.def » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.h
diff --git a/src/IceInst.h b/src/IceInst.h
index 3067c2658a7532739044b1c9b496ef8961eeab61..fd0eeea9d76b6908bf8791c9f019ab25424b81ce 100644
--- a/src/IceInst.h
+++ b/src/IceInst.h
@@ -161,6 +161,7 @@ public:
#define X(tag, str, commutative) tag,
ICEINSTARITHMETIC_TABLE
#undef X
+ _num
};
static InstArithmetic *create(Cfg *Func, OpKind Op, Variable *Dest,
@@ -287,6 +288,7 @@ public:
#define X(tag, str) tag,
ICEINSTCAST_TABLE
#undef X
+ _num
};
static InstCast *create(Cfg *Func, OpKind CastKind, Variable *Dest,
@@ -314,6 +316,7 @@ public:
#define X(tag, str) tag,
ICEINSTFCMP_TABLE
#undef X
+ _num
};
static InstFcmp *create(Cfg *Func, FCond Condition, Variable *Dest,
@@ -342,6 +345,7 @@ public:
#define X(tag, str) tag,
ICEINSTICMP_TABLE
#undef X
+ _num
};
static InstIcmp *create(Cfg *Func, ICond Condition, Variable *Dest,
« no previous file with comments | « no previous file | src/IceInstX8632.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698