blob: 1389b9f5472ed6f34e71d198ad754e88f3c26801 [file] [log] [blame]
; REQUIRES: x86
; RUN: llvm-as %s -o %t.o
; RUN: ld.lld -m elf_x86_64 %t.o -o %t
; RUN: llvm-nm %t | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
module asm ".text"
module asm ".globl foo"
; CHECK: T foo
module asm "foo: ret"
declare void @foo()
define void @_start() {
call void @foo()
ret void
}