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

@ -22,22 +22,22 @@
#if !(__ASSEMBLER__ + __LINKER__ + 0)
COSMOPOLITAN_C_START_
hidden extern const long MADV_DODUMP;
hidden extern const long MADV_DOFORK;
hidden extern const long MADV_DONTDUMP;
hidden extern const long MADV_DONTFORK;
hidden extern const long MADV_DONTNEED;
hidden extern const long MADV_FREE;
hidden extern const long MADV_HUGEPAGE;
hidden extern const long MADV_HWPOISON;
hidden extern const long MADV_MERGEABLE;
hidden extern const long MADV_NOHUGEPAGE;
hidden extern const long MADV_NORMAL;
hidden extern const long MADV_RANDOM;
hidden extern const long MADV_REMOVE;
hidden extern const long MADV_SEQUENTIAL;
hidden extern const long MADV_UNMERGEABLE;
hidden extern const long MADV_WILLNEED;
extern const long MADV_DODUMP;
extern const long MADV_DOFORK;
extern const long MADV_DONTDUMP;
extern const long MADV_DONTFORK;
extern const long MADV_DONTNEED;
extern const long MADV_FREE;
extern const long MADV_HUGEPAGE;
extern const long MADV_HWPOISON;
extern const long MADV_MERGEABLE;
extern const long MADV_NOHUGEPAGE;
extern const long MADV_NORMAL;
extern const long MADV_RANDOM;
extern const long MADV_REMOVE;
extern const long MADV_SEQUENTIAL;
extern const long MADV_UNMERGEABLE;
extern const long MADV_WILLNEED;
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */