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

Unified Diff: x86_decode.cc

Issue 7326013: GCC 4.6 warnings cleanup (Closed) Base URL: http://seccompsandbox.googlecode.com/svn/trunk/
Patch Set: Created 9 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
« no previous file with comments | « tests/test_syscalls.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: x86_decode.cc
===================================================================
--- x86_decode.cc (revision 157)
+++ x86_decode.cc (working copy)
@@ -170,13 +170,10 @@
idx = 256;
}
type = opcode_types[idx + byte];
- bool found_mod_rm = false;
Markus (顧孟勤) 2011/09/16 16:07:32 While currently unused, these statements actually
bool found_group = false;
- bool found_sib = false;
unsigned char mod_rm = 0;
unsigned char sib = 0;
if (type & GROUP) {
- found_mod_rm = true;
found_group = true;
mod_rm = *insn_ptr;
if (mod_rm_ptr) {
@@ -209,7 +206,6 @@
operand_width = 8;
}
if (type & MOD_RM) {
- found_mod_rm = true;
if (mod_rm_ptr) {
*mod_rm_ptr = (char *)insn_ptr;
}
@@ -233,7 +229,6 @@
}
} else {
if ((rm & 0x7) == 4) {
- found_sib = true;
if (sib_ptr) {
*sib_ptr = (char *)insn_ptr;
}
« no previous file with comments | « tests/test_syscalls.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698