diff options
author | Nico Weber <nicolasweber@gmx.de> | 2018-04-02 01:46:08 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2018-04-02 01:46:08 +0000 |
commit | 7a4f647dc2c61c82afb9d1309c6fba3f4e376a8f (patch) | |
tree | 5c77772e07c557d02483fd4df6f589f95bc94362 /llvm/cmake/config-ix.cmake | |
parent | caec723a1a64c6d442b771e3946f875786a56955 (diff) | |
download | bcm5719-llvm-7a4f647dc2c61c82afb9d1309c6fba3f4e376a8f.tar.gz bcm5719-llvm-7a4f647dc2c61c82afb9d1309c6fba3f4e376a8f.zip |
Remove a few unreferenced config.h defines.
Found by looking through the output of
for f in $(grep -o '\bHAVE_[A-Z0-9_]*\b' llvm/cmake/config-ix.cmake); do
echo $f $(git grep $f '*' | wc -l);
done
in the monorepo.
llvm-svn: 328957
Diffstat (limited to 'llvm/cmake/config-ix.cmake')
-rw-r--r-- | llvm/cmake/config-ix.cmake | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/cmake/config-ix.cmake b/llvm/cmake/config-ix.cmake index 91055429600..34ad356a2a1 100644 --- a/llvm/cmake/config-ix.cmake +++ b/llvm/cmake/config-ix.cmake @@ -228,11 +228,6 @@ check_symbol_exists(mallctl malloc_np.h HAVE_MALLCTL) check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO) check_symbol_exists(malloc_zone_statistics malloc/malloc.h HAVE_MALLOC_ZONE_STATISTICS) -check_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP) -check_symbol_exists(mkstemp "stdlib.h;unistd.h" HAVE_MKSTEMP) -check_symbol_exists(mktemp "stdlib.h;unistd.h" HAVE_MKTEMP) -check_symbol_exists(getcwd unistd.h HAVE_GETCWD) -check_symbol_exists(gettimeofday sys/time.h HAVE_GETTIMEOFDAY) check_symbol_exists(getrlimit "sys/types.h;sys/time.h;sys/resource.h" HAVE_GETRLIMIT) check_symbol_exists(posix_spawn spawn.h HAVE_POSIX_SPAWN) check_symbol_exists(pread unistd.h HAVE_PREAD) |