summaryrefslogtreecommitdiffstats
path: root/libc/tools
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-05-16 17:18:23 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-05-16 17:18:23 -0700
commitdc6c2b779b4fa8bf44e51b18785f44ab9c7e0a18 (patch)
tree5a5226dc83b2ca42b6a90047ae5bc08e775d0a1c /libc/tools
parent1727a041b59995b00c1d497022600be929bcaf3e (diff)
parent70cf0bc0496a1d4c0e83fe3f1933f667ab66c148 (diff)
downloadbionic-dc6c2b779b4fa8bf44e51b18785f44ab9c7e0a18.zip
bionic-dc6c2b779b4fa8bf44e51b18785f44ab9c7e0a18.tar.gz
bionic-dc6c2b779b4fa8bf44e51b18785f44ab9c7e0a18.tar.bz2
am 70cf0bc0: Merge "Remove the last references to SuperH."
* commit '70cf0bc0496a1d4c0e83fe3f1933f667ab66c148': Remove the last references to SuperH.
Diffstat (limited to 'libc/tools')
-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 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)