From: David Green Date: Wed, 18 May 2022 15:12:08 +0000 (+0100) Subject: [ARM] Clean up a test check from D125604. NFC X-Git-Tag: upstream/15.0.7~7362 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc0229fd6bfd1fb57409c284de5e5a8ac7349b69;p=platform%2Fupstream%2Fllvm.git [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 --- diff --git a/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll b/llvm/test/CodeGen/Thumb2/thumb2-execute-only-prologue.ll index a8f4275..767a288 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)