Improve dead code elimination

This commit is contained in:
Justine Tunney 2021-02-08 04:04:42 -08:00
parent 760db8c5ad
commit 0e36cb3ac4
6606 changed files with 9685 additions and 9854 deletions

View file

@ -4,52 +4,52 @@
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
hidden extern const long PTRACE_TRACEME;
hidden extern const long PTRACE_PEEKTEXT;
hidden extern const long PTRACE_PEEKDATA;
hidden extern const long PTRACE_PEEKUSER;
hidden extern const long PTRACE_POKETEXT;
hidden extern const long PTRACE_POKEDATA;
hidden extern const long PTRACE_POKEUSER;
hidden extern const long PTRACE_CONT;
hidden extern const long PTRACE_KILL;
hidden extern const long PTRACE_SINGLESTEP;
hidden extern const long PTRACE_GETREGS;
hidden extern const long PTRACE_SETREGS;
hidden extern const long PTRACE_GETFPREGS;
hidden extern const long PTRACE_SETFPREGS;
hidden extern const long PTRACE_ATTACH;
hidden extern const long PTRACE_DETACH;
hidden extern const long PTRACE_GETFPXREGS;
hidden extern const long PTRACE_SETFPXREGS;
hidden extern const long PTRACE_SYSCALL;
hidden extern const long PTRACE_GETEVENTMSG;
hidden extern const long PTRACE_GETSIGINFO;
hidden extern const long PTRACE_SETOPTIONS;
hidden extern const long PTRACE_SETSIGINFO;
hidden extern const long PTRACE_GETREGSET;
hidden extern const long PTRACE_GETSIGMASK;
hidden extern const long PTRACE_INTERRUPT;
hidden extern const long PTRACE_LISTEN;
hidden extern const long PTRACE_PEEKSIGINFO;
hidden extern const long PTRACE_SECCOMP_GET_FILTER;
hidden extern const long PTRACE_SEIZE;
hidden extern const long PTRACE_SETREGSET;
hidden extern const long PTRACE_SETSIGMASK;
hidden extern const long PTRACE_O_TRACESYSGOOD;
hidden extern const long PTRACE_O_TRACEFORK;
hidden extern const long PTRACE_O_TRACEVFORK;
hidden extern const long PTRACE_O_TRACECLONE;
hidden extern const long PTRACE_O_TRACEEXEC;
hidden extern const long PTRACE_O_TRACEVFORKDONE;
hidden extern const long PTRACE_O_TRACEEXIT;
hidden extern const long PTRACE_O_MASK;
hidden extern const long PTRACE_EVENT_FORK;
hidden extern const long PTRACE_EVENT_VFORK;
hidden extern const long PTRACE_EVENT_CLONE;
hidden extern const long PTRACE_EVENT_EXEC;
hidden extern const long PTRACE_EVENT_VFORK_DONE;
hidden extern const long PTRACE_EVENT_EXIT;
extern const long PTRACE_TRACEME;
extern const long PTRACE_PEEKTEXT;
extern const long PTRACE_PEEKDATA;
extern const long PTRACE_PEEKUSER;
extern const long PTRACE_POKETEXT;
extern const long PTRACE_POKEDATA;
extern const long PTRACE_POKEUSER;
extern const long PTRACE_CONT;
extern const long PTRACE_KILL;
extern const long PTRACE_SINGLESTEP;
extern const long PTRACE_GETREGS;
extern const long PTRACE_SETREGS;
extern const long PTRACE_GETFPREGS;
extern const long PTRACE_SETFPREGS;
extern const long PTRACE_ATTACH;
extern const long PTRACE_DETACH;
extern const long PTRACE_GETFPXREGS;
extern const long PTRACE_SETFPXREGS;
extern const long PTRACE_SYSCALL;
extern const long PTRACE_GETEVENTMSG;
extern const long PTRACE_GETSIGINFO;
extern const long PTRACE_SETOPTIONS;
extern const long PTRACE_SETSIGINFO;
extern const long PTRACE_GETREGSET;
extern const long PTRACE_GETSIGMASK;
extern const long PTRACE_INTERRUPT;
extern const long PTRACE_LISTEN;
extern const long PTRACE_PEEKSIGINFO;
extern const long PTRACE_SECCOMP_GET_FILTER;
extern const long PTRACE_SEIZE;
extern const long PTRACE_SETREGSET;
extern const long PTRACE_SETSIGMASK;
extern const long PTRACE_O_TRACESYSGOOD;
extern const long PTRACE_O_TRACEFORK;
extern const long PTRACE_O_TRACEVFORK;
extern const long PTRACE_O_TRACECLONE;
extern const long PTRACE_O_TRACEEXEC;
extern const long PTRACE_O_TRACEVFORKDONE;
extern const long PTRACE_O_TRACEEXIT;
extern const long PTRACE_O_MASK;
extern const long PTRACE_EVENT_FORK;
extern const long PTRACE_EVENT_VFORK;
extern const long PTRACE_EVENT_CLONE;
extern const long PTRACE_EVENT_EXEC;
extern const long PTRACE_EVENT_VFORK_DONE;
extern const long PTRACE_EVENT_EXIT;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */