diff options
author | Edgar E. Iglesias <edgar@axis.com> | 2011-01-10 23:28:08 +0100 |
---|---|---|
committer | Edgar E. Iglesias <edgar@axis.com> | 2011-01-10 23:28:08 +0100 |
commit | 05bf441eb69a813d3893174d54faa6afa8c0d39b (patch) | |
tree | a285c0a61d922f5c25587b2c979486357b560059 /target-cris | |
parent | 5cabc5ccfe180241a9086bd9bcbb1b5de8f3fc72 (diff) |
cris: Remove unused orig_flags
Based on a patch by Blue Swirl <blauwirbel@gmail.com>.
Signed-off-by: Edgar E. Iglesias <edgar@axis.com>
Diffstat (limited to 'target-cris')
-rw-r--r-- | target-cris/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-cris/translate.c b/target-cris/translate.c index 9e403dc4f2..e09aaa9e9d 100644 --- a/target-cris/translate.c +++ b/target-cris/translate.c @@ -3185,7 +3185,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, { uint16_t *gen_opc_end; uint32_t pc_start; - unsigned int insn_len, orig_flags; + unsigned int insn_len; int j, lj; struct DisasContext ctx; struct DisasContext *dc = &ctx; @@ -3229,7 +3229,7 @@ gen_intermediate_code_internal(CPUState *env, TranslationBlock *tb, dc->cc_size_uptodate = -1; /* Decode TB flags. */ - orig_flags = dc->tb_flags = tb->flags & (S_FLAG | P_FLAG | U_FLAG \ + dc->tb_flags = tb->flags & (S_FLAG | P_FLAG | U_FLAG \ | X_FLAG | PFIX_FLAG); dc->delayed_branch = !!(tb->flags & 7); if (dc->delayed_branch) |