brintos

brintos / llvm-project-archived public Read only

0
0
Text · 568 B · 541f15b Raw
24 lines · plain
1; REQUIRES: x862; RUN: llvm-as %s -o %t.o3; RUN: ld.lld %t.o -o %t24; RUN: llvm-readobj --symbols %t2 | FileCheck %s5 6; CHECK:      Format: elf64-x86-647; CHECK-NEXT: Arch: x86_648; CHECK-NEXT: AddressSize: 64bit9 10; CHECK:      Name: _start11; CHECK-NEXT: Value:12; CHECK-NEXT: Size: 113; CHECK-NEXT: Binding: Global14; CHECK-NEXT: Type: Function15; CHECK-NEXT: Other:16; CHECK-NEXT: Section: .text17 18target triple = "x86_64-unknown-linux-gnu"19target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"20 21define void @_start() {22  ret void23}24