forked from OSchip/llvm-project
Use unreachable instead of assert(false) to silence MSVC warning
llvm-svn: 230045
This commit is contained in:
parent
c4091aa74e
commit
a070ee5ef5
|
@ -648,7 +648,7 @@ private:
|
|||
case PhiState::Conflict:
|
||||
return stateA;
|
||||
}
|
||||
assert(false && "only three states!");
|
||||
llvm_unreachable("only three states!");
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue