ARM: Get rid of the unused ArmGenericCodeSubs.

This commit is contained in:
Gabe Black 2010-06-02 12:58:03 -05:00
parent 8c012e9571
commit ae135228fc

View file

@ -30,17 +30,6 @@
let {{
# Generic substitutions for Arm instructions
def ArmGenericCodeSubs(code):
# Substitute in the shifted portion of operations
new_code = re.sub(r'Rm_Imm',
'shift_rm_imm(Rm, shift_size, shift, CondCodes<29:>)', code)
new_code = re.sub(r'Rm_Rs',
'shift_rm_rs(Rm, Rs, shift, CondCodes<29:>)', new_code)
return new_code
}};
output header {{
std::string inst2string(MachInst machInst);
}};