[compiler-rt][hwasan][Fuchsia] Do not emit FindDynamicShadowStart for Fuchsia

This function is unused because fuchsia does not support a dynamic shadow.

Differential Revision: https://reviews.llvm.org/D105735
This commit is contained in:
Leonard Chan 2021-07-09 15:13:04 -07:00
parent 3d272eea08
commit 86832c9440
1 changed files with 9 additions and 0 deletions

View File

@ -113,6 +113,15 @@ uptr FindDynamicShadowStart(uptr shadow_size_bytes) {
}
} // namespace __hwasan
#elif SANITIZER_FUCHSIA
namespace __hwasan {
void InitShadowGOT() {}
} // namespace __hwasan
#else
namespace __hwasan {