Use unreachable instead of assert(false) to silence MSVC warning

llvm-svn: 230045
This commit is contained in:
Reid Kleckner 2015-02-20 19:46:02 +00:00
parent c4091aa74e
commit a070ee5ef5
1 changed files with 1 additions and 1 deletions

View File

@ -648,7 +648,7 @@ private:
case PhiState::Conflict: case PhiState::Conflict:
return stateA; return stateA;
} }
assert(false && "only three states!"); llvm_unreachable("only three states!");
} }
}; };
} }