Tests in test/ExecutionEngine/JITLink/X86 were for x86-64 only (never i386) so it makes sense to name the test directory x86-64, and drop x86-64 from the individual test names.
13 lines
168 B
ArmAsm
13 lines
168 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o %t
|
|
// RUN: llvm-jitlink -noexec %t
|
|
|
|
.section .foo,"ax"
|
|
.globl zero
|
|
zero:
|
|
|
|
|
|
.text
|
|
.globl main
|
|
main:
|
|
nop
|