From c79a366ec0f87eafca123138b550b039618bf880 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Fri, 1 May 2020 10:06:02 -0400 Subject: [PATCH] [InstSimplify] update test; NFC Missed this test diff when committing: rG5486e00dc3 --- llvm/test/Transforms/InstSimplify/vscale.ll | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/test/Transforms/InstSimplify/vscale.ll b/llvm/test/Transforms/InstSimplify/vscale.ll index 608a093..669c824 100644 --- a/llvm/test/Transforms/InstSimplify/vscale.ll +++ b/llvm/test/Transforms/InstSimplify/vscale.ll @@ -17,7 +17,8 @@ define @insertelement_idx_undef( %a) { define @insertelement_value_undef( %a) { ; CHECK-LABEL: @insertelement_value_undef( -; CHECK-NEXT: ret [[A:%.*]] +; CHECK-NEXT: [[R:%.*]] = insertelement [[A:%.*]], i32 undef, i64 0 +; CHECK-NEXT: ret [[R]] ; %r = insertelement %a, i32 undef, i64 0 ret %r -- 2.7.4