diff options
Diffstat (limited to 'libc/tools')
-rwxr-xr-x | libc/tools/gensyscalls.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py index 9a8a8c7..21d2f1d 100755 --- a/libc/tools/gensyscalls.py +++ b/libc/tools/gensyscalls.py @@ -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) |