diff options
Diffstat (limited to 'llvm/test/Transforms/InstSimplify/call.ll')
-rw-r--r-- | llvm/test/Transforms/InstSimplify/call.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstSimplify/call.ll b/llvm/test/Transforms/InstSimplify/call.ll index ee8f35aa7cd..994ff6b8c0d 100644 --- a/llvm/test/Transforms/InstSimplify/call.ll +++ b/llvm/test/Transforms/InstSimplify/call.ll @@ -203,8 +203,7 @@ declare <2 x i256> @llvm.cttz.v2i256(<2 x i256> %src, i1 %is_zero_undef) define <2 x i256> @test_cttz_vec() { ; CHECK-LABEL: @test_cttz_vec( -; CHECK-NEXT: [[X:%.*]] = call <2 x i256> @llvm.cttz.v2i256(<2 x i256> <i256 10, i256 10>, i1 false) -; CHECK-NEXT: ret <2 x i256> [[X]] +; CHECK-NEXT: ret <2 x i256> <i256 1, i256 1> ; %x = call <2 x i256> @llvm.cttz.v2i256(<2 x i256> <i256 10, i256 10>, i1 false) ret <2 x i256> %x |