brintos

brintos / llvm-project-archived public Read only

0
0
Text · 352 B · 461439d Raw
20 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -triple=x86_64-windows-msvc %s -filetype=obj -o %t.obj3# RUN: lld-link -entry:main %t.obj -out:%t.exe -verbose 2>&1 | FileCheck %s4 5# CHECK: Selected internal6# CHECK:   Removed f27 8.section .text,"xr",one_only,internal9internal:10.globl main11main:12call f213ret14 15.section .text,"xr",one_only,f216.globl f217f2:18call main19ret20