brintos

brintos / llvm-project-archived public Read only

0
0
Text · 470 B · f062da3 Raw
18 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t3 4# RUN: ld.lld -N --image-base=0x100 -Ttext 0x100 -o %t.out %t --oformat binary5# RUN: od -t x1 -v %t.out | FileCheck %s --check-prefix=BIN6 7# BIN:      0000000 908# BIN-NEXT: 00000019 10## The same but without OMAGIC.11# RUN: ld.lld --image-base=0x100 -Ttext 0x100 -o %t.out %t --oformat binary12# RUN: od -t x1 -v %t.out | FileCheck %s --check-prefix=BIN13 14.text15.globl _start16_start:17 nop18