Home | History | Annotate | Download | only in PowerPC

Lines Matching full:void

10 declare void @foo()
12 define void @test_direct() {
13 call void @foo( )
14 ret void
17 define void @test_indirect(void ()* %fp) {
18 call void %fp( )
19 ret void
22 define void @test_abs() {
23 %fp = inttoptr i32 400 to void ()* ; <void ()*> [#uses=1]
24 call void %fp( )
25 ret void