diff options
author | Nick Clifton <nickc@redhat.com> | 2000-08-17 23:57:52 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-08-17 23:57:52 +0000 |
commit | abe54903396b9a7055cfb5005fc620da4dec8e7a (patch) | |
tree | 246cc192855eafd3cc68c693d72af1004683f0c3 /gas | |
parent | a67f706e2cb32798ca2ff6e42e62de463126affd (diff) | |
download | binutils-redhat-abe54903396b9a7055cfb5005fc620da4dec8e7a.tar.gz |
Minor formatting changes
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-arm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 8af25e621f..c6d7966969 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -213,7 +213,7 @@ static const struct asm_shift_name shift_names [] = { "ROR", shift_properties + SHIFT_ROR }, { "RRX", shift_properties + SHIFT_RRX } }; - + #define NO_SHIFT_RESTRICT 1 #define SHIFT_RESTRICT 0 @@ -5691,7 +5691,7 @@ md_apply_fix3 (fixP, val, seg) is the PC) with the destination register. We have already added in the PC in the first instruction and we do not want to do it again. */ - newinsn &= ~0xf0000; + newinsn &= ~ 0xf0000; newinsn |= ((newinsn & 0x0f000) << 4); } @@ -5707,7 +5707,7 @@ md_apply_fix3 (fixP, val, seg) sign = value >= 0; if (value < 0) - value = -value; + value = - value; if (validate_offset_imm (value, 0) == FAIL) { @@ -5728,7 +5728,7 @@ md_apply_fix3 (fixP, val, seg) sign = value >= 0; if (value < 0) - value = -value; + value = - value; if (validate_offset_imm (value, 1) == FAIL) { @@ -5751,7 +5751,7 @@ md_apply_fix3 (fixP, val, seg) sign = value >= 0; if (value < 0) - value = -value; + value = - value; if (validate_offset_imm (value, 0) == FAIL) { |