New test case.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58745 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2008-11-05 01:40:30 +00:00
parent b7c6bf1e07
commit c9eaef0bf2

View File

@ -0,0 +1,6 @@
; 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
}