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

Unified Diff: src/assembler_ia32.h

Issue 607443003: Subzero: Enable the C++11 build. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 6 years, 3 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
« src/PNaClTranslator.cpp ('K') | « src/PNaClTranslator.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/assembler_ia32.h
diff --git a/src/assembler_ia32.h b/src/assembler_ia32.h
index b5c9a16097649bce33c2e9aab68026c802631109..b477d1da20efe4e752b13a3d9a90bccbbf22f247 100644
--- a/src/assembler_ia32.h
+++ b/src/assembler_ia32.h
@@ -157,7 +157,8 @@ protected:
private:
uint8_t length_;
uint8_t encoding_[6];
- uint8_t padding_;
+ // Commenting out this private unused field to avoid warnings.
+ // uint8_t padding_;
jvoung (off chromium) 2014/09/25 21:05:01 I think that we might as well delete this.
Jim Stichnoth 2014/09/26 00:11:18 Done.
AssemblerFixup *fixup_;
explicit Operand(GPRRegister reg) : fixup_(NULL) { SetModRM(3, reg); }
« src/PNaClTranslator.cpp ('K') | « src/PNaClTranslator.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698