1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Analysis/DSGraph/HardBUCase.ll
Chris Lattner 6d45a2e32b Add missing run line
llvm-svn: 17517
2004-11-06 21:01:45 +00:00

21 lines
321 B
LLVM

; RUN: analyze %s -budatastructure -dont-print-ds
%MidFnTy = type void (\2*)
implementation
int %main() {
call %MidFnTy* %Mid(%MidFnTy* %Mid)
ret int 0
}
internal void %Mid(%MidFnTy *%F) {
call void %Bottom(%MidFnTy* %F)
ret void
}
internal void %Bottom(%MidFnTy* %F) {
call void %F(%MidFnTy* %Mid)
ret void
}