diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-07 04:34:39 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-07 04:34:39 +0000 |
commit | a9db73a60b368b048a596fc80477b9269909713f (patch) | |
tree | 14cdf1fbdbd0ad7b95c8c45b776bb594ca93ce30 | |
parent | b3fe46340aaf3611a87f190bd4ac52d3d80e219e (diff) | |
download | gcc-a9db73a60b368b048a596fc80477b9269909713f.zip gcc-a9db73a60b368b048a596fc80477b9269909713f.tar.gz gcc-a9db73a60b368b048a596fc80477b9269909713f.tar.bz2 |
Fix whitespace in previous change.
From-SVN: r6033
-rw-r--r-- | gcc/config/m88k/m88k.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index 695d655..68abcaf 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -1344,11 +1344,12 @@ real_or_0_operand (op, mode) /* Return true if OP is valid to use in the context of logic aritmethic on condition codes. */ -int partial_ccmode_register_operand(op,mode) +int +partial_ccmode_register_operand (op, mode) rtx op; enum machine_mode mode; { - return (register_operand(op,CCmode) || register_operand(op,CCEVENmode)); + return register_operand (op, CCmode) || register_operand (op, CCEVENmode); } /* Return true if OP is a relational operator. */ @@ -1376,11 +1377,12 @@ relop (op, mode) } } -int even_relop(op,mode) +int +even_relop (op, mode) rtx op; enum machine_mode mode; { - switch (GET_CODE(op)) + switch (GET_CODE (op)) { case EQ: case LT: @@ -1393,11 +1395,12 @@ int even_relop(op,mode) } } -int odd_relop(op,mode) +int +odd_relop (op, mode) rtx op; enum machine_mode mode; { - switch (GET_CODE(op)) + switch (GET_CODE (op)) { case NE: case LE: @@ -2849,7 +2852,7 @@ print_operand (file, x, code) case '!': /* Reverse the following condition. */ sequencep++; - reversep=1; + reversep = 1; return; case 'R': /* reverse the condition of the next print_operand if operand is a label_ref. */ |