diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:52:19 +0000 |
commit | 5c909fa013fc285f010a95e8d387e0ef3412da9c (patch) | |
tree | 1059d068ad281f4776ff44cd414574f99a460023 /make/platform/clang_darwin_test_input.c | |
parent | f31bcc68c72371a2bf63aead9f3373a1ff2053b6 (diff) | |
download | src-5c909fa013fc285f010a95e8d387e0ef3412da9c.tar.gz src-5c909fa013fc285f010a95e8d387e0ef3412da9c.zip |
Vendor import of compiler-rt trunk r256633:vendor/compiler-rt/compiler-rt-trunk-r256633
Notes
Notes:
svn path=/vendor/compiler-rt/dist/; revision=292925
svn path=/vendor/compiler-rt/compiler-rt-trunk-r256633/; revision=292926; tag=vendor/compiler-rt/compiler-rt-trunk-r256633
Diffstat (limited to 'make/platform/clang_darwin_test_input.c')
-rw-r--r-- | make/platform/clang_darwin_test_input.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/make/platform/clang_darwin_test_input.c b/make/platform/clang_darwin_test_input.c index b7074b852d88..b406a28a639c 100644 --- a/make/platform/clang_darwin_test_input.c +++ b/make/platform/clang_darwin_test_input.c @@ -4,3 +4,12 @@ #include <stdint.h> #include <stdlib.h> #include <stdio.h> +#include <string.h> + +// Force us to link at least one symbol in a system library +// to detect systems where we don't have those for a given +// architecture. +int main(int argc, const char **argv) { + int x; + memcpy(&x,&argc,sizeof(int)); +} |