Fix an inline asm pasto from 117667; was preventing
{i64, i64} from matching i128.
llvm-svn: 118465
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 1c9fcc1..603e7e4 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -2738,7 +2738,8 @@
case 32:
case 64:
case 128:
- OpTy = IntegerType::get(OpTy->getContext(), BitSize);
+ OpInfo.ConstraintVT =
+ EVT::getEVT(IntegerType::get(OpTy->getContext(), BitSize), true);
break;
}
} else if (dyn_cast<PointerType>(OpTy)) {