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

Unified Diff: src/IceTargetLoweringX8664Traits.h

Issue 1572863003: Fix the g++ build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Remove comment Created 4 years, 11 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 | « src/IceTargetLoweringX8632Traits.h ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringX8664Traits.h
diff --git a/src/IceTargetLoweringX8664Traits.h b/src/IceTargetLoweringX8664Traits.h
index 314416c565a1b94f85d21218eb62bca7e4391dc8..bab08a181c41f2908ed3481f6741953c4b36db0a 100644
--- a/src/IceTargetLoweringX8664Traits.h
+++ b/src/IceTargetLoweringX8664Traits.h
@@ -501,17 +501,17 @@ public:
static constexpr struct {
uint16_t Val;
- int Is64 : 1;
- int Is32 : 1;
- int Is16 : 1;
- int Is8 : 1;
- int IsXmm : 1;
- int Is64To8 : 1;
- int Is32To8 : 1;
- int Is16To8 : 1;
- int IsTrunc8Rcvr : 1;
- int IsAhRcvr : 1;
- int Scratch : 1;
+ unsigned Is64 : 1;
+ unsigned Is32 : 1;
+ unsigned Is16 : 1;
+ unsigned Is8 : 1;
+ unsigned IsXmm : 1;
+ unsigned Is64To8 : 1;
+ unsigned Is32To8 : 1;
+ unsigned Is16To8 : 1;
+ unsigned IsTrunc8Rcvr : 1;
+ unsigned IsAhRcvr : 1;
+ unsigned Scratch : 1;
#define NUM_ALIASES_BITS 2
SizeT NumAliases : (NUM_ALIASES_BITS + 1);
uint16_t Aliases[1 << NUM_ALIASES_BITS];
« no previous file with comments | « src/IceTargetLoweringX8632Traits.h ('k') | src/IceTargetLoweringX86Base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698