Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / COFF / autoimport-arm-code.s
blob562a1a959e38b8bf5ad1c8c52998d1910192fafd
1 # REQUIRES: arm
3 # RUN: echo -e ".global variable\n.global DllMainCRTStartup\n.thumb\n.text\nDllMainCRTStartup:\nbx lr\n.data\nvariable:\n.long 42" > %t-lib.s
4 # RUN: llvm-mc -triple=armv7-windows-gnu %t-lib.s -filetype=obj -o %t-lib.obj
5 # RUN: lld-link -out:%t-lib.dll -dll -entry:DllMainCRTStartup %t-lib.obj -lldmingw -implib:%t-lib.lib
7 # RUN: llvm-mc -triple=armv7-windows-gnu %s -filetype=obj -o %t.obj
8 # RUN: not lld-link -lldmingw -out:%t.exe -entry:main %t.obj %t-lib.lib 2>&1 | FileCheck %s
10 # CHECK: error: unable to automatically import from variable with relocation type IMAGE_REL_ARM_MOV32T
12 .global main
13 .text
14 .thumb
15 main:
16 movw r0, :lower16:variable
17 movt r0, :upper16:variable
18 ldr r0, [r0]
19 bx lr