1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

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 bd0813ded2
commit 89bd75e03b

View File

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