mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Replace some assert(0)'s with llvm_unreachable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211141 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -220,7 +220,7 @@ public:
|
||||
|
||||
void recordCPEClone(unsigned CPIdx, unsigned CPCloneIdx) {
|
||||
if (!CPEClones.insert(std::make_pair(CPCloneIdx, CPIdx)).second)
|
||||
assert(0 && "Duplicate entries!");
|
||||
llvm_unreachable("Duplicate entries!");
|
||||
}
|
||||
|
||||
unsigned getOriginalCPIdx(unsigned CloneIdx) const {
|
||||
|
Reference in New Issue
Block a user