diff options
Diffstat (limited to 'gcc/tree-switch-conversion.c')
-rw-r--r-- | gcc/tree-switch-conversion.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-switch-conversion.c b/gcc/tree-switch-conversion.c index 2dd13fc9a54..a0d33067a8f 100644 --- a/gcc/tree-switch-conversion.c +++ b/gcc/tree-switch-conversion.c @@ -365,7 +365,7 @@ emit_case_bit_tests (gimple swtch, tree index_expr, test[k].lo |= (HOST_WIDE_INT) 1 << j; } - qsort (test, count, sizeof(*test), case_bit_test_cmp); + qsort (test, count, sizeof (*test), case_bit_test_cmp); /* We generate two jumps to the default case label. Split the default edge, so that we don't have to do any PHI node @@ -1485,8 +1485,8 @@ const pass_data pass_data_convert_switch = class pass_convert_switch : public gimple_opt_pass { public: - pass_convert_switch(gcc::context *ctxt) - : gimple_opt_pass(pass_data_convert_switch, ctxt) + pass_convert_switch (gcc::context *ctxt) + : gimple_opt_pass (pass_data_convert_switch, ctxt) {} /* opt_pass methods: */ |