[llvm] fc0229f - [ARM] Clean up a test check from D125604. NFC

David Green via llvm-commits llvm-commits at lists.llvm.org
Wed May 18 08:12:15 PDT 2022


Author: David Green
Date: 2022-05-18T16:12:08+01:00
New Revision: fc0229fd6bfd1fb57409c284de5e5a8ac7349b69

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

LOG: [ARM] Clean up a test check from D125604. NFC

The Arm test had a incorrect check line with the wrong offset. From the
look of the code it should be -400*4 = 0xFFFFF9C0 = 4294965696

Added: 
    

Modified: 
    llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll b/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll
index a8f427502f8d2..767a2889c5b21 100644
--- a/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll
+++ b/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll
@@ -10,7 +10,7 @@ entry:
 ; CHECK-NEXT:    .pad #1600
 ; CHECK-NEXT:    add sp, r6
 ; CHECK: .LCPI0_0:
-; CHECK_NEXT:    long   4294963196
+; CHECK-NEXT:    .long 4294965696
   %a = alloca [400 x i32], align 4
   %arraydecay = getelementptr inbounds [400 x i32], [400 x i32]* %a, i32 0, i32 0
   call void @bar(i32* %arraydecay)


        


More information about the llvm-commits mailing list