diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-09 10:21:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-09 10:21:22 +0000 |
commit | e333d2c4011881ec0a6b72d6a8093c9dbeb6a448 (patch) | |
tree | d3e9b2339754a8694c51b3d35c70000dfec9f8d6 /opcodes/m32r-ibld.c | |
parent | 5598ce11711078da0c7d490d11cc14cfdc421436 (diff) | |
download | gdb-e333d2c4011881ec0a6b72d6a8093c9dbeb6a448.zip gdb-e333d2c4011881ec0a6b72d6a8093c9dbeb6a448.tar.gz gdb-e333d2c4011881ec0a6b72d6a8093c9dbeb6a448.tar.bz2 |
Fix badly placed #if 0...
Diffstat (limited to 'opcodes/m32r-ibld.c')
-rw-r--r-- | opcodes/m32r-ibld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/m32r-ibld.c b/opcodes/m32r-ibld.c index 4d083a1..59bc058 100644 --- a/opcodes/m32r-ibld.c +++ b/opcodes/m32r-ibld.c @@ -375,9 +375,9 @@ extract_1 (cd, ex_info, start, length, word_length, bufp, pc) int shift; #if 0 int big_p = CGEN_CPU_INSN_ENDIAN (cd) == CGEN_ENDIAN_BIG; - - x = cgen_get_insn_value (cd, bufp, word_length); #endif + x = cgen_get_insn_value (cd, bufp, word_length); + if (CGEN_INSN_LSB0_P) shift = (start + 1) - length; else |