bolt/deps/llvm-18.1.8/llvm/test/Transforms/Inline/pr22285.ll
2025-02-14 19:21:04 +01:00

15 lines
304 B
LLVM

; RUN: opt < %s -passes='cgscc(inline),globaldce' -S | FileCheck %s
$f1 = comdat any
; CHECK-NOT: $f1 = comdat any
define void @f2() {
call void @f1()
ret void
}
; CHECK-LABEL: define void @f2
define linkonce_odr void @f1() comdat {
ret void
}
; CHECK-NOT: define linkonce_odr void @f1() comdat