2006-05-17 05:57:31 +02:00
|
|
|
; Test various forms of calls.
|
|
|
|
|
2009-09-09 02:09:15 +02:00
|
|
|
; RUN: llc < %s -march=ppc32 | \
|
2007-08-15 15:36:28 +02:00
|
|
|
; RUN: grep {bl } | count 2
|
2009-09-09 02:09:15 +02:00
|
|
|
; RUN: llc < %s -march=ppc32 | \
|
2007-08-15 15:36:28 +02:00
|
|
|
; RUN: grep {bctrl} | count 1
|
2009-09-09 02:09:15 +02:00
|
|
|
; RUN: llc < %s -march=ppc32 | \
|
2007-08-15 15:36:28 +02:00
|
|
|
; RUN: grep {bla } | count 1
|
2006-05-17 05:57:31 +02:00
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
declare void @foo()
|
2006-05-17 05:57:31 +02:00
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
define void @test_direct() {
|
|
|
|
call void @foo( )
|
|
|
|
ret void
|
2006-05-17 05:57:31 +02:00
|
|
|
}
|
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
define void @test_extsym(i8* %P) {
|
|
|
|
free i8* %P
|
|
|
|
ret void
|
2006-05-17 06:20:13 +02:00
|
|
|
}
|
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
define void @test_indirect(void ()* %fp) {
|
|
|
|
call void %fp( )
|
|
|
|
ret void
|
2006-05-17 05:57:31 +02:00
|
|
|
}
|
|
|
|
|
2008-03-25 05:26:08 +01:00
|
|
|
define void @test_abs() {
|
|
|
|
%fp = inttoptr i32 400 to void ()* ; <void ()*> [#uses=1]
|
|
|
|
call void %fp( )
|
|
|
|
ret void
|
2006-05-17 05:57:31 +02:00
|
|
|
}
|
2008-03-25 05:26:08 +01:00
|
|
|
|