Remove the last references to SuperH.

Change-Id: Icb44c1f94cb178d90b4c2b1e8f6d175586aec4e1
This commit is contained in:
Elliott Hughes
2012-05-15 17:03:18 -07:00
parent cf8e554c72
commit e33af61c70
9 changed files with 0 additions and 499 deletions

View File

@@ -364,23 +364,6 @@ class State:
"idname" : idname }
return mips_call % t
def superh_genstub(self, fname, flags, idname):
numargs = int(flags)
t = { "fname" : fname,
"idname" : idname,
"numargs" : numargs }
superh_call = superh_header
if flags:
if numargs == 5:
superh_call += superh_5args_header
if numargs == 6:
superh_call += superh_6args_header
if numargs == 7:
superh_call += superh_7args_header
superh_call += superh_call_default
return superh_call % t
def process_file(self,input):
parser = SysCallsTxtParser()
parser.parse_file(input)