diff options
| author | Tim Northover <tnorthover@apple.com> | 2015-05-06 20:07:38 +0000 |
|---|---|---|
| committer | Tim Northover <tnorthover@apple.com> | 2015-05-06 20:07:38 +0000 |
| commit | e4310fe9466396b874576018ae3c8a7487c1b9c2 (patch) | |
| tree | 88b0b911ff9274bf702e0aaebca8dca13220b6ae | |
| parent | 5db6639225a416662660125484bad58f81038e7a (diff) | |
| download | bcm5719-llvm-e4310fe9466396b874576018ae3c8a7487c1b9c2.tar.gz bcm5719-llvm-e4310fe9466396b874576018ae3c8a7487c1b9c2.zip | |
CodeGen: move over-zealous assert into actual if statement.
It's quite possible to encounter an insertvalue instruction that's more deeply
nested than the value we're looking for, but when that happens we really
mustn't compare beyond the end of the index array.
Since I couldn't see any guarantees about what comparisons std::equal makes, we
probably need to directly check the size beforehand. In practice, I suspect
most std::equal implementations would probably bail early, which would be OK.
But just in case...
rdar://20834485
llvm-svn: 236635
| -rw-r--r-- | llvm/lib/CodeGen/Analysis.cpp | 5 | ||||
| -rw-r--r-- | llvm/test/CodeGen/AArch64/tail-call.ll | 19 |
2 files changed, 21 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/Analysis.cpp b/llvm/lib/CodeGen/Analysis.cpp index ac0d40ec3a7..3224fac25cb 100644 --- a/llvm/lib/CodeGen/Analysis.cpp +++ b/llvm/lib/CodeGen/Analysis.cpp @@ -295,9 +295,8 @@ static const Value *getNoopInput(const Value *V, } else if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(V)) { // Value may come from either the aggregate or the scalar ArrayRef<unsigned> InsertLoc = IVI->getIndices(); - assert(ValLoc.size() >= InsertLoc.size() && "extracting too deeply"); - if (std::equal(InsertLoc.begin(), InsertLoc.end(), - ValLoc.rbegin())) { + if (ValLoc.size() >= InsertLoc.size() && + std::equal(InsertLoc.begin(), InsertLoc.end(), ValLoc.rbegin())) { // The type being inserted is a nested sub-type of the aggregate; we // have to remove those initial indices to get the location we're // interested in for the operand. diff --git a/llvm/test/CodeGen/AArch64/tail-call.ll b/llvm/test/CodeGen/AArch64/tail-call.ll index 700eec77636..e5766154bb4 100644 --- a/llvm/test/CodeGen/AArch64/tail-call.ll +++ b/llvm/test/CodeGen/AArch64/tail-call.ll @@ -122,3 +122,22 @@ define { [3 x float] } @test_add_elem() { %res.012 = insertvalue { [3 x float] } %res.01, float 1.000000e+00, 0, 2 ret { [3 x float] } %res.012 } + +declare double @get_double() +define { double, [2 x double] } @test_mismatched_insert() { +; CHECK-LABEL: test_mismatched_insert: +; CHECK: bl get_double +; CHECK: bl get_double +; CHECK: bl get_double +; CHECK: ret + + %val0 = call double @get_double() + %val1 = call double @get_double() + %val2 = tail call double @get_double() + + %res.0 = insertvalue { double, [2 x double] } undef, double %val0, 0 + %res.01 = insertvalue { double, [2 x double] } %res.0, double %val1, 1, 0 + %res.012 = insertvalue { double, [2 x double] } %res.01, double %val2, 1, 1 + + ret { double, [2 x double] } %res.012 +} |

