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 | 7bd5587d8d37ce0ce052ec983706f914e2794ef0 (patch) | |
tree | f0585779a43a0f69d7b74e3f025a6e3a2be58e82 /opcodes/fr30-ibld.c | |
parent | 6a129d4f23cd565a7d606542ed9253f522388de5 (diff) | |
download | gdb-7bd5587d8d37ce0ce052ec983706f914e2794ef0.tar.gz |
Fix badly placed #if 0...
Diffstat (limited to 'opcodes/fr30-ibld.c')
-rw-r--r-- | opcodes/fr30-ibld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/fr30-ibld.c b/opcodes/fr30-ibld.c index 92e7ee3c39f..3a72fc27be7 100644 --- a/opcodes/fr30-ibld.c +++ b/opcodes/fr30-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 |