1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

New test case.

llvm-svn: 58745
This commit is contained in:
Devang Patel 2008-11-05 01:40:30 +00:00
parent de9b95965a
commit 5ca10e5295

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
}