blob: 20b253231cd4df7549c37f721a9d61093decdb71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t %s
; RUN: llvm-modextract -b -n 0 -o - %t | llvm-dis | FileCheck --check-prefix=M0 %s
; RUN: llvm-modextract -b -n 1 -o - %t | llvm-dis | FileCheck --check-prefix=M1 %s
; Check that __cfi_check is emitted on the full LTO side with
; attributes preserved, even if nothing has !type metadata
; on the ThinLTO side.
; M0: @g = global i32 0
@g = global i32 0
; M1: define void @__cfi_check() #0
define void @__cfi_check() #0 {
ret void
}
; M1: attributes #0 = { "branch-target-enforcement" }
attributes #0 = { "branch-target-enforcement" }
|