Commit c8e2516c by Simon Baldwin Committed by Simon Baldwin

reg-stack.c (get_true_reg): Readability change.


* reg-stack.c (get_true_reg): Readability change.  Moved default case
label into direct switch statement scope.

From-SVN: r125574
parent 2c5cfd1f
2007-06-08 Simon Baldwin <simonb@google.com>
* reg-stack.c (get_true_reg): Readability change. Moved default case
label into direct switch statement scope.
2007-06-08 Simon Baldwin <simonb@google.com>
* tree-flow-inline.h (var_ann): Replaced erroneous '=' assignment
in gcc_assert() with '==' comparison.
......
......@@ -424,7 +424,6 @@ get_true_reg (rtx *pat)
GET_MODE (*pat));
*pat = FP_MODE_REG (REGNO (subreg) + regno_off,
GET_MODE (subreg));
default:
return pat;
}
}
......@@ -444,6 +443,9 @@ get_true_reg (rtx *pat)
return pat;
pat = & XEXP (*pat, 0);
break;
default:
return pat;
}
}
......
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