Commit a9db73a6 by Richard Stallman

Fix whitespace in previous change.

From-SVN: r6033
parent b3fe4634
...@@ -1344,11 +1344,12 @@ real_or_0_operand (op, mode) ...@@ -1344,11 +1344,12 @@ real_or_0_operand (op, mode)
/* Return true if OP is valid to use in the context of logic aritmethic /* Return true if OP is valid to use in the context of logic aritmethic
on condition codes. */ on condition codes. */
int partial_ccmode_register_operand(op,mode) int
partial_ccmode_register_operand (op, mode)
rtx op; rtx op;
enum machine_mode mode; 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. */ /* Return true if OP is a relational operator. */
...@@ -1376,11 +1377,12 @@ relop (op, mode) ...@@ -1376,11 +1377,12 @@ relop (op, mode)
} }
} }
int even_relop(op,mode) int
even_relop (op, mode)
rtx op; rtx op;
enum machine_mode mode; enum machine_mode mode;
{ {
switch (GET_CODE(op)) switch (GET_CODE (op))
{ {
case EQ: case EQ:
case LT: case LT:
...@@ -1393,11 +1395,12 @@ int even_relop(op,mode) ...@@ -1393,11 +1395,12 @@ int even_relop(op,mode)
} }
} }
int odd_relop(op,mode) int
odd_relop (op, mode)
rtx op; rtx op;
enum machine_mode mode; enum machine_mode mode;
{ {
switch (GET_CODE(op)) switch (GET_CODE (op))
{ {
case NE: case NE:
case LE: case LE:
...@@ -2849,7 +2852,7 @@ print_operand (file, x, code) ...@@ -2849,7 +2852,7 @@ print_operand (file, x, code)
case '!': /* Reverse the following condition. */ case '!': /* Reverse the following condition. */
sequencep++; sequencep++;
reversep=1; reversep = 1;
return; return;
case 'R': /* reverse the condition of the next print_operand case 'R': /* reverse the condition of the next print_operand
if operand is a label_ref. */ if operand is a label_ref. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment