[llvm] f78a06e - [X86] Remove out of range extract in test (NFC)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 13 05:46:39 PDT 2023


Author: Nikita Popov
Date: 2023-07-13T14:46:29+02:00
New Revision: f78a06ef111d619d160a92d1fd7553337a1921a1

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

LOG: [X86] Remove out of range extract in test (NFC)

As pointed out in https://reviews.llvm.org/D154078#inline-1500915.

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/pr63475.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/pr63475.ll b/llvm/test/CodeGen/X86/pr63475.ll
index 621e3f8624d7cd..d4b7a7cacefda0 100644
--- a/llvm/test/CodeGen/X86/pr63475.ll
+++ b/llvm/test/CodeGen/X86/pr63475.ll
@@ -58,7 +58,6 @@ define void @callee(ptr %p0, ptr %p1, ptr %p2, ptr %p3, ptr %p4, ptr %p5, <7 x i
 ; CHECK-NEXT:    callq use at PLT
 ; CHECK-NEXT:    movl %ebx, %edi
 ; CHECK-NEXT:    callq use at PLT
-; CHECK-NEXT:    callq use at PLT
 ; CHECK-NEXT:    addq $8, %rsp
 ; CHECK-NEXT:    popq %rbx
 ; CHECK-NEXT:    popq %r12
@@ -84,8 +83,6 @@ start:
   call void @use(i32 %extract5)
   %extract6 = extractelement <7 x i32> %arg, i64 6
   call void @use(i32 %extract6)
-  %extract7 = extractelement <7 x i32> %arg, i64 7
-  call void @use(i32 %extract7)
   ret void
 }
 


        


More information about the llvm-commits mailing list