[X86] Fix unused variable warning with NDEBUG from r204058

llvm-svn: 204063
This commit is contained in:
Adam Nemet 2014-03-17 17:32:53 +00:00
parent 36a7fa80ab
commit 8a130a5f86
1 changed files with 1 additions and 2 deletions

View File

@ -9227,8 +9227,7 @@ SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
SelectionDAG &DAG) const {
MVT VT = Op.getSimpleValueType();
assert(!VT.isVector());
assert(!Op.getSimpleValueType().isVector());
std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
/*IsSigned=*/ true, /*IsReplace=*/ false);