diff options
| author | Nadav Rotem <nrotem@apple.com> | 2013-12-10 01:13:59 +0000 |
|---|---|---|
| committer | Nadav Rotem <nrotem@apple.com> | 2013-12-10 01:13:59 +0000 |
| commit | 6eee080450133c42ba557ae212b5e991180663f4 (patch) | |
| tree | 13359f05500d5c6f6b6e92ea1c9fa3753b0a3a13 /llvm | |
| parent | 32813752e3e1da2c9e2e7a267940587d535ce093 (diff) | |
| download | bcm5719-llvm-6eee080450133c42ba557ae212b5e991180663f4.tar.gz bcm5719-llvm-6eee080450133c42ba557ae212b5e991180663f4.zip | |
Fix PR18162 - Incorrect assertion assumed that the SDValue resno is zero.
llvm-svn: 196858
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/pr18162.ll | 27 |
2 files changed, 28 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index ff78f646c25..8903ffbf699 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -9859,7 +9859,7 @@ SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) { if (N->getNumOperands() == 2 && N->getOperand(1)->getOpcode() == ISD::UNDEF) { SDValue In = N->getOperand(0); - assert(In->getValueType(0).isVector() && "Must concat vectors"); + assert(In.getValueType().isVector() && "Must concat vectors"); // Transform: concat_vectors(scalar, undef) -> scalar_to_vector(sclr). if (In->getOpcode() == ISD::BITCAST && diff --git a/llvm/test/CodeGen/X86/pr18162.ll b/llvm/test/CodeGen/X86/pr18162.ll new file mode 100644 index 00000000000..523e47db5ee --- /dev/null +++ b/llvm/test/CodeGen/X86/pr18162.ll @@ -0,0 +1,27 @@ +; RUN: llc < %s + +; Make sure we are not crashing on this one. + +target triple = "x86_64-unknown-linux-gnu" + +%"Iterator" = type { i32* } + +declare { i64, <2 x float> } @Call() +declare { i64, <2 x float> }* @CallPtr() + +define { i64, <2 x float> } @Foo(%"Iterator"* %this) { +entry: + %retval = alloca i32 + %this.addr = alloca %"Iterator"* + %this1 = load %"Iterator"** %this.addr + %bundle_ = getelementptr inbounds %"Iterator"* %this1, i32 0, i32 0 + %0 = load i32** %bundle_ + %1 = call { i64, <2 x float> } @Call() + %2 = call { i64, <2 x float> }* @CallPtr() + %3 = getelementptr { i64, <2 x float> }* %2, i32 0, i32 1 + %4 = extractvalue { i64, <2 x float> } %1, 1 + store <2 x float> %4, <2 x float>* %3 + %5 = load { i64, <2 x float> }* %2 + ret { i64, <2 x float> } %5 +} + |

