llvm-project/lld/test/ELF/lto/undef.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
489 B
LLVM
Raw Normal View History

2016-02-29 21:46:39 +08:00
; REQUIRES: x86
; RUN: llvm-as %s -o %t.o
; RUN: ld.lld %t.o -o %t.so -shared
; RUN: llvm-readobj --symbols %t.so | FileCheck %s
2016-02-29 21:46:39 +08:00
target triple = "x86_64-unknown-linux-gnu"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
2016-02-29 21:46:39 +08:00
declare void @bar()
define void @foo() {
call void @bar()
ret void
}
; CHECK: Name: bar
; CHECK-NEXT: Value: 0x0
; CHECK-NEXT: Size: 0
; CHECK-NEXT: Binding: Global
; CHECK-NEXT: Type: None
; CHECK-NEXT: Other: 0
; CHECK-NEXT: Section: Undefined