From 71b0ee72bbe505af9409d26c6120fddd92883bf0 Mon Sep 17 00:00:00 2001 From: Leonard Chan Date: Thu, 5 Nov 2020 10:37:08 -0800 Subject: [PATCH] [NFC] Add InitializePlatformCommonFlags for Fuchsia https://reviews.llvm.org/D90811 is breaking our CI builders because InitializePlatformCommonFlags is not defined. This just adds an empty definition. This would've been caught on our upstream buildbot, but it's red at the moment and most likely won't be sending out alert emails for recent failures. Differential Revision: https://reviews.llvm.org/D90864 --- compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp index 80c1592..7200ffd 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp +++ b/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp @@ -505,6 +505,8 @@ u32 GetNumberOfCPUs() { uptr GetRSS() { UNIMPLEMENTED(); } +void InitializePlatformCommonFlags(CommonFlags *cf) {} + } // namespace __sanitizer using namespace __sanitizer; -- 2.7.4