[PATCH] D66758: compiler-rt: all FreeBSD CPU archs except i386 use 64-bit time_t

Ed Maste via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 3 06:43:36 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL370756: compiler-rt: use 64-bit time_t for all FreeBSD archs except i386 (authored by emaste, committed by ).
Herald added a subscriber: delcypher.

Changed prior to commit:
  https://reviews.llvm.org/D66758?vs=217199&id=218447#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D66758/new/

https://reviews.llvm.org/D66758

Files:
  compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h


Index: compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
===================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
@@ -114,7 +114,7 @@
     long key;
   };
 
-#if defined(__LP64___)
+#if !defined(__i386__)
   typedef long long __sanitizer_time_t;
 #else
   typedef long __sanitizer_time_t;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66758.218447.patch
Type: text/x-patch
Size: 483 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190903/2325ae89/attachment.bin>


More information about the llvm-commits mailing list