diff options
Diffstat (limited to 'llvm/test/CodeGen/AArch64/tail-call.ll')
| -rw-r--r-- | llvm/test/CodeGen/AArch64/tail-call.ll | 19 |
1 files changed, 19 insertions, 0 deletions
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 +} |

