aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-08-17 23:57:52 +0000
committerNick Clifton <nickc@redhat.com>2000-08-17 23:57:52 +0000
commit004af544ae8a2b96855299bd21a21a12c1621573 (patch)
treeeec1dfa58f8402b4c780c077eb515f178414c7d4
parent4fb7971f4b419c9c5cac5cdeaf4b32162caa9a49 (diff)
downloadbinutils-004af544ae8a2b96855299bd21a21a12c1621573.zip
binutils-004af544ae8a2b96855299bd21a21a12c1621573.tar.gz
binutils-004af544ae8a2b96855299bd21a21a12c1621573.tar.bz2
Minor formatting changes
-rw-r--r--gas/config/tc-arm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 8af25e6..c6d7966 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)
{