Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / GC / inline.ll
blob3a45f983b9f58c92bad27bddb59734118bd0bc1b
1 ; RUN: opt < %s -passes='cgscc(inline)' -S | grep example
3         %IntArray = type { i32, [0 x ptr] }
5 declare void @llvm.gcroot(ptr, ptr) nounwind
7 define i32 @f() {
8         %x = call i32 @g( )             ; <i32> [#uses=1]
9         ret i32 %x
12 define internal i32 @g() gc "example" {
13         %root = alloca ptr              ; <ptr> [#uses=2]
14         call void @llvm.gcroot( ptr %root, ptr null )
15         %obj = call ptr @h( )           ; <ptr> [#uses=2]
16         store ptr %obj, ptr %root
17         %Length.ptr = getelementptr %IntArray, ptr %obj, i32 0, i32 0           ; <ptr> [#uses=1]
18         %Length = load i32, ptr %Length.ptr             ; <i32> [#uses=1]
19         ret i32 %Length
22 declare ptr @h()