1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

23 lines
530 B
LLVM
Raw Normal View History

; RUN: opt -thinlto-bc -o %t %s
; RUN: llvm-modextract -n 1 -o - %t | llvm-dis | FileCheck %s
target triple = "x86_64-unknown-linux-gnu"
module asm ".symver used, used@VER"
module asm ".symver unused, unused@VER"
module asm ".symver variable, variable@VER"
declare !type !0 void @used()
declare !type !0 void @unused()
@variable = global i32 0
define i32* @use() {
call void @used()
ret i32* @variable
}
; CHECK: !symvers = !{![[SYMVER:[0-9]+]]}
; CHECK: ![[SYMVER]] = !{!"used", !"used@VER"}
!0 = !{i64 0, !"_ZTSFvvE"}