[compiler-rt] 71b0ee7 - [NFC] Add InitializePlatformCommonFlags for Fuchsia

Leonard Chan via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 5 10:40:07 PST 2020


Author: Leonard Chan
Date: 2020-11-05T10:39:51-08:00
New Revision: 71b0ee72bbe505af9409d26c6120fddd92883bf0

URL: https://github.com/llvm/llvm-project/commit/71b0ee72bbe505af9409d26c6120fddd92883bf0
DIFF: https://github.com/llvm/llvm-project/commit/71b0ee72bbe505af9409d26c6120fddd92883bf0.diff

LOG: [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

Added: 
    

Modified: 
    compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
index 80c1592de0b2..7200ffdac0ff 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;


        


More information about the llvm-commits mailing list