Remove overly broad assert from r354717.

llvm-svn: 354720
This commit is contained in:
Richard Trieu 2019-02-23 05:48:50 +00:00
parent 6ac16e91f6
commit 1bf3a09b3d
1 changed files with 0 additions and 2 deletions

View File

@ -56,8 +56,6 @@ struct StackTrace {
void Print() const;
static bool WillUseFastUnwind(bool request_fast_unwind) {
static_assert(SANITIZER_CAN_FAST_UNWIND || SANITIZER_CAN_SLOW_UNWIND,
"Neither fast nor slow unwinder is supported");
if (!SANITIZER_CAN_FAST_UNWIND)
return false;
if (!SANITIZER_CAN_SLOW_UNWIND)