[llvm] 994ef4e - [InstCombine] Fix test name to match type. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 25 14:00:54 PDT 2020


Author: Simon Pilgrim
Date: 2020-09-25T22:00:36+01:00
New Revision: 994ef4e7bb22ccdc871ee876207e529ed118f114

URL: https://github.com/llvm/llvm-project/commit/994ef4e7bb22ccdc871ee876207e529ed118f114
DIFF: https://github.com/llvm/llvm-project/commit/994ef4e7bb22ccdc871ee876207e529ed118f114.diff

LOG: [InstCombine] Fix test name to match type. NFCI.

We're testing a <2 x i36> not <2 x i16>

Added: 
    

Modified: 
    llvm/test/Transforms/InstCombine/rotate.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/Transforms/InstCombine/rotate.ll b/llvm/test/Transforms/InstCombine/rotate.ll
index 2b8d9fc1e3d1..9f14e5479579 100644
--- a/llvm/test/Transforms/InstCombine/rotate.ll
+++ b/llvm/test/Transforms/InstCombine/rotate.ll
@@ -105,8 +105,8 @@ define <2 x i32> @rotr_v2i32_constant_nonsplat(<2 x i32> %x) {
   ret <2 x i32> %r
 }
 
-define <2 x i36> @rotl_v2i16_constant_nonsplat(<2 x i36> %x) {
-; CHECK-LABEL: @rotl_v2i16_constant_nonsplat(
+define <2 x i36> @rotl_v2i36_constant_nonsplat(<2 x i36> %x) {
+; CHECK-LABEL: @rotl_v2i36_constant_nonsplat(
 ; CHECK-NEXT:    [[SHL:%.*]] = shl <2 x i36> [[X:%.*]], <i36 21, i36 11>
 ; CHECK-NEXT:    [[SHR:%.*]] = lshr <2 x i36> [[X]], <i36 15, i36 25>
 ; CHECK-NEXT:    [[R:%.*]] = or <2 x i36> [[SHL]], [[SHR]]


        


More information about the llvm-commits mailing list