From d311311beb02b1ebc70b0dc4d32c17ff7e18c12c Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 7 Sep 2016 15:19:07 +0000 Subject: [PATCH] Fix typo in test - it should be masking bits0-15 not bit16 llvm-svn: 280816 --- llvm/test/CodeGen/X86/combine-or.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/X86/combine-or.ll b/llvm/test/CodeGen/X86/combine-or.ll index 143c403..f674ddd 100644 --- a/llvm/test/CodeGen/X86/combine-or.ll +++ b/llvm/test/CodeGen/X86/combine-or.ll @@ -462,7 +462,7 @@ define <4 x i32> @or_zext_v4i16(<4 x i16> %a0) { ; CHECK-NEXT: por {{.*}}(%rip), %xmm0 ; CHECK-NEXT: retq %1 = zext <4 x i16> %a0 to <4 x i32> - %2 = or <4 x i32> %1, + %2 = or <4 x i32> %1, ret <4 x i32> %2 } -- 2.7.4