You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// REQUIRES: aarch64
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64-windows %s -o %t.obj
|
|
// RUN: not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe -dynamicbase:no 2>&1 | FileCheck %s
|
|
.globl _start
|
|
_start:
|
|
ret
|
|
|
|
# CHECK: dynamicbase:no is not compatible with arm64
|