зеркало из https://github.com/microsoft/clang-1.git
Fix -Asserts warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
35911ce76b
Коммит
135da71b4c
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "clang/Checker/PathSensitive/GRState.h"
|
||||
#include "llvm/ADT/ImmutableIntervalMap.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
|
||||
using namespace clang;
|
||||
using llvm::Interval;
|
||||
|
@ -159,6 +160,7 @@ Interval FlatStoreManager::RegionToInterval(const MemRegion *R) {
|
|||
return Interval(0, Size-1);
|
||||
}
|
||||
default:
|
||||
assert(0 && "Region kind unhandled.");
|
||||
llvm_unreachable("Region kind unhandled.");
|
||||
return Interval(0, 0);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче