mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
3e054fe9ef
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81257 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
160 B
LLVM
8 lines
160 B
LLVM
; RUN: opt %s -always-inline -S | grep {@foo}
|
|
; Ensure that foo is not removed by always inliner
|
|
; PR 2945
|
|
|
|
define internal i32 @foo() nounwind {
|
|
ret i32 0
|
|
}
|