blob: 33868d541d4562a9231c5e9e4d4f96edaf0031d1 [file] [log] [blame]
; RUN: opt -S -passes=lowertypetests %s | FileCheck %s
target datalayout = "e-p:64:64"
target triple = "x86_64-unknown-linux-gnu"
; CHECK: @a = global [6 x ptr] [ptr no_cfi @f1, ptr @.cfi.jumptable, ptr getelementptr inbounds ([3 x [8 x i8]], ptr @.cfi.jumptable, i64 0, i64 1), ptr no_cfi @f2, ptr @f3, ptr no_cfi @f3.cfi]
@a = global [6 x ptr] [ptr no_cfi @f1, ptr @f1, ptr @f2, ptr no_cfi @f2, ptr @f3, ptr no_cfi @f3]
; CHECK: define void @f1()
define void @f1() !type !0 {
ret void
}
; CHECK: define internal void @f2()
define internal void @f2() !type !0 {
ret void
}
; CHECK: define hidden void @f3.cfi()
define void @f3() #0 !type !0 {
ret void
}
declare i1 @llvm.type.test(ptr %ptr, metadata %bitset) nounwind readnone
define i1 @foo(ptr %p) {
%x = call i1 @llvm.type.test(ptr %p, metadata !"typeid1")
ret i1 %x
}
!llvm.module.flags = !{!1}
attributes #0 = { "cfi-canonical-jump-table" }
!0 = !{i32 0, !"typeid1"}
!1 = !{i32 4, !"CFI Canonical Jump Tables", i32 0}