brintos

brintos / llvm-project-archived public Read only

0
0
Text · 813 B · 6ccce26 Raw
17 lines · plain
1// REQUIRES: aarch642// RUN: llvm-mc -filetype=obj -triple=aarch64-windows %s -o %t.obj3// RUN: not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe -dynamicbase:no 2>&1 | FileCheck %s4 5// RUN: llvm-mc -filetype=obj -triple=arm64ec-windows %s -o %t.obj6// RUN: not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe -dynamicbase:no -machine:arm64ec 2>&1 \7// RUN:              | FileCheck %s -check-prefix=ARM64EC8// RUN: not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe -dynamicbase:no -machine:arm64x -dll -noentry 2>&1 \9// RUN:              | FileCheck %s -check-prefix=ARM64X10 .globl _start11_start:12 ret13 14# CHECK: dynamicbase:no is not compatible with arm6415# ARM64EC: dynamicbase:no is not compatible with arm64ec16# ARM64X: dynamicbase:no is not compatible with arm64x17