compiler-rt: use 64-bit time_t for all FreeBSD archs except i386

Obtained from:	LLVM r370756
This commit is contained in:
Ed Maste 2019-09-09 18:33:15 +00:00
parent af3c40982c
commit 057a14dafb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352096

View File

@ -115,7 +115,7 @@ namespace __sanitizer {
long key;
};
#if defined(__LP64___)
#if !defined(__i386__)
typedef long long __sanitizer_time_t;
#else
typedef long __sanitizer_time_t;