mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
4797826e17
TestRunner tests). This makes creating the new test database class easier to implement. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8841 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
468 B
LLVM
27 lines
468 B
LLVM
; RUN: analyze %s -tddatastructure
|
|
|
|
implementation ; Functions:
|
|
|
|
declare void %__main()
|
|
|
|
void %A(int* %L) {
|
|
bb0: ; No predecessors!
|
|
call void %B( int* %L )
|
|
call void %A( int* %L )
|
|
ret void
|
|
}
|
|
|
|
void %B(int* %L) {
|
|
bb0: ; No predecessors!
|
|
call void %A( int* %L )
|
|
ret void
|
|
}
|
|
|
|
void %main() {
|
|
bb0: ; No predecessors!
|
|
call void %__main( )
|
|
call void %A( int* null )
|
|
ret void
|
|
}
|
|
|