summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/TargetLowering.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-11-09 01:15:07 +0000
committerDale Johannesen <dalej@apple.com>2010-11-09 01:15:07 +0000
commit71365d3774a6c02f3f198fbf08a56e4b6346bbcc (patch)
treec6996644387643d4198cd0d1b5370e4e984d6a70 /lib/CodeGen/SelectionDAG/TargetLowering.cpp
parente1f2e502b99fa0bafa6da2976b0cad69dcf6ecd6 (diff)
downloadllvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.gz
llvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.bz2
llvm-71365d3774a6c02f3f198fbf08a56e4b6346bbcc.tar.xz
Fix an inline asm pasto from 117667; was preventing
{i64, i64} from matching i128. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118465 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/TargetLowering.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 1c9fcc1293..603e7e4891 100644
--- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -2738,7 +2738,8 @@ TargetLowering::AsmOperandInfoVector TargetLowering::ParseConstraints(
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)) {