forked from OSchip/llvm-project
7 lines
170 B
LLVM
7 lines
170 B
LLVM
![]() |
; RUN: llvm-as < %s | opt -always-inline | llvm-dis | grep {@foo}
|
||
|
; Ensure that foo is not removed by always inliner
|
||
|
|
||
|
define internal i32 @foo() nounwind {
|
||
|
ret i32 0
|
||
|
}
|