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