Mercurial > hg > CbC > old > device
view tools/regs_use.pl @ 479:51c1b795b4f3
fix broken $gp in jal in code segement
author | kono |
---|---|
date | Sat, 26 Nov 2005 09:50:55 +0900 |
parents | 7c3d8237b625 |
children |
line wrap: on
line source
#!/usr/bin/perl $d = 0; while(<>) { s/get_register\(\d*\)/get_register($d)/g; s/get_lregister\(\d*\)/get_lregister($d)/g; $d++; print; }