summaryrefslogtreecommitdiff
path: root/gcc/store-motion.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/store-motion.c')
-rw-r--r--gcc/store-motion.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/store-motion.c b/gcc/store-motion.c
index e0b58477d4c..68f293c6252 100644
--- a/gcc/store-motion.c
+++ b/gcc/store-motion.c
@@ -271,7 +271,7 @@ store_ops_ok (const_rtx x, int *regs_set)
for (; x; x = XEXP (x, 1))
{
reg = XEXP (x, 0);
- if (regs_set[REGNO(reg)])
+ if (regs_set[REGNO (reg)])
return false;
}
@@ -1256,8 +1256,8 @@ const pass_data pass_data_rtl_store_motion =
class pass_rtl_store_motion : public rtl_opt_pass
{
public:
- pass_rtl_store_motion(gcc::context *ctxt)
- : rtl_opt_pass(pass_data_rtl_store_motion, ctxt)
+ pass_rtl_store_motion (gcc::context *ctxt)
+ : rtl_opt_pass (pass_data_rtl_store_motion, ctxt)
{}
/* opt_pass methods: */