-
- Downloads
This patch normalizes more bitmap function names.
sbitmap.h TEST_BIT -> bitmap_bit_p SET_BIT -> bitmap_set_bit SET_BIT_WITH_POPCOUNT -> bitmap_set_bit_with_popcount RESET_BIT -> bitmap_clear_bit RESET_BIT_WITH_POPCOUNT -> bitmap_clear_bit_with_popcount basic-block.h sbitmap_intersection_of_succs -> bitmap_intersection_of_succs sbitmap_intersection_of_preds -> bitmap_intersection_of_preds sbitmap_union_of_succs -> bitmap_union_of_succs sbitmap_union_of_preds -> bitmap_union_of_preds The sbitmap.h functions also needed their numeric paramter changed from unsigned int to int to match the bitmap functions. Callers updated to match. Tested on x86-64, config-list.mk testing. Index: gcc/ChangeLog 2012-11-01 Lawrence Crowl <crowl@google.com> * sbitmap.h (TEST_BIT): Rename bitmap_bit_p, normalizing parameter type. Update callers to match. (SET_BIT): Rename bitmap_set_bit, normalizing parameter type. Update callers to match. (SET_BIT_WITH_POPCOUNT): Rename bitmap_set_bit_with_popcount, normalizing parameter type. Update callers to match. (RESET_BIT): Rename bitmap_clear_bit, normalizing parameter type. Update callers to match. (RESET_BIT_WITH_POPCOUNT): Rename bitmap_clear_bit_with_popcount, normalizing parameter type. Update callers to match. * basic-block.h (sbitmap_intersection_of_succs): Rename bitmap_intersection_of_succs. Update callers to match. * basic-block.h (sbitmap_intersection_of_preds): Rename bitmap_intersection_of_preds. Update callers to match. * basic-block.h (sbitmap_union_of_succs): Rename bitmap_union_of_succs. Update callers to match. * basic-block.h (sbitmap_union_of_preds): Rename bitmap_union_of_preds. Update callers to match. From-SVN: r193066
Showing
- gcc/ChangeLog 21 additions, 0 deletionsgcc/ChangeLog
- gcc/alias.c 8 additions, 8 deletionsgcc/alias.c
- gcc/basic-block.h 4 additions, 4 deletionsgcc/basic-block.h
- gcc/bt-load.c 5 additions, 5 deletionsgcc/bt-load.c
- gcc/calls.c 2 additions, 2 deletionsgcc/calls.c
- gcc/cfg.c 2 additions, 2 deletionsgcc/cfg.c
- gcc/cfganal.c 24 additions, 28 deletionsgcc/cfganal.c
- gcc/cfgbuild.c 2 additions, 2 deletionsgcc/cfgbuild.c
- gcc/cfgloop.c 8 additions, 8 deletionsgcc/cfgloop.c
- gcc/cfgloopmanip.c 19 additions, 19 deletionsgcc/cfgloopmanip.c
- gcc/cfgrtl.c 3 additions, 3 deletionsgcc/cfgrtl.c
- gcc/config/epiphany/resolve-sw-modes.c 5 additions, 5 deletionsgcc/config/epiphany/resolve-sw-modes.c
- gcc/config/i386/i386.c 11 additions, 11 deletionsgcc/config/i386/i386.c
- gcc/config/mips/mips.c 2 additions, 2 deletionsgcc/config/mips/mips.c
- gcc/config/spu/spu.c 1 addition, 1 deletiongcc/config/spu/spu.c
- gcc/cprop.c 6 additions, 6 deletionsgcc/cprop.c
- gcc/cse.c 7 additions, 7 deletionsgcc/cse.c
- gcc/dce.c 2 additions, 2 deletionsgcc/dce.c
- gcc/ddg.c 16 additions, 16 deletionsgcc/ddg.c
- gcc/df-core.c 5 additions, 5 deletionsgcc/df-core.c
Loading
Please register or sign in to comment