aboutsummaryrefslogtreecommitdiffstats
path: root/libc/tools/gensyscalls.py
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-05-15 17:03:18 -0700
committerElliott Hughes <enh@google.com>2012-05-15 17:08:41 -0700
commite33af61c7073719b027e038fbcdde49363b604ee (patch)
treea716f29090aec47bbd62f5b66e2494e751e51183 /libc/tools/gensyscalls.py
parentcf8e554c72af1dd634d4f36a9065e34e853f8714 (diff)
downloadandroid_bionic-e33af61c7073719b027e038fbcdde49363b604ee.tar.gz
android_bionic-e33af61c7073719b027e038fbcdde49363b604ee.tar.bz2
android_bionic-e33af61c7073719b027e038fbcdde49363b604ee.zip
Remove the last references to SuperH.
Change-Id: Icb44c1f94cb178d90b4c2b1e8f6d175586aec4e1
Diffstat (limited to 'libc/tools/gensyscalls.py')
-rwxr-xr-xlibc/tools/gensyscalls.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py
index edad79298..c113be1e0 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)