summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips64
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-05-20 16:24:10 -0700
committerElliott Hughes <enh@google.com>2014-05-20 16:24:55 -0700
commit4e631ba5688db2fae7bbc476982055a376102146 (patch)
tree89ba046be0d6572f54de0a930bcac365f0881928 /libc/arch-mips64
parent3d2bc5d6c8f08e587a8dad848829f98776549ba6 (diff)
downloadbionic-4e631ba5688db2fae7bbc476982055a376102146.zip
bionic-4e631ba5688db2fae7bbc476982055a376102146.tar.gz
bionic-4e631ba5688db2fae7bbc476982055a376102146.tar.bz2
Remove perf_event_open.
This was accidentally added at a time when you couldn't add a constant to <syscall.h> without generating an assembly stub! (You no longer need to add the constants at all.) Bug: 11156955 Change-Id: I053c17879138787976c744a5ecf7d30ee51dc48f
Diffstat (limited to 'libc/arch-mips64')
-rw-r--r--libc/arch-mips64/syscalls/perf_event_open.S25
1 files changed, 0 insertions, 25 deletions
diff --git a/libc/arch-mips64/syscalls/perf_event_open.S b/libc/arch-mips64/syscalls/perf_event_open.S
deleted file mode 100644
index d796a16..0000000
--- a/libc/arch-mips64/syscalls/perf_event_open.S
+++ /dev/null
@@ -1,25 +0,0 @@
-/* Generated by gensyscalls.py. Do not edit. */
-
-#include <private/bionic_asm.h>
-
-ENTRY(perf_event_open)
- .set push
- .set noreorder
- li v0, __NR_perf_event_open
- syscall
- bnez a3, 1f
- move a0, v0
- j ra
- nop
-1:
- move t0, ra
- bal 2f
- nop
-2:
- .cpsetup ra, t1, 2b
- LA t9,__set_errno
- .cpreturn
- j t9
- move ra, t0
- .set pop
-END(perf_event_open)