diff options
author | Chris Lattner <sabre@nondot.org> | 2003-07-23 20:48:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-07-23 20:48:03 +0000 |
commit | 2c77cb91010c63c2392856ee3b5331998799ac4d (patch) | |
tree | d08c5644821f43e4b1ffe99bf1b93e5a3c5a1c97 /test | |
parent | d4e8d31e4003aa704cf53e65ee3195c941897181 (diff) | |
download | external_llvm-2c77cb91010c63c2392856ee3b5331998799ac4d.zip external_llvm-2c77cb91010c63c2392856ee3b5331998799ac4d.tar.gz external_llvm-2c77cb91010c63c2392856ee3b5331998799ac4d.tar.bz2 |
Check in old testcase sitting in my tree
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Analysis/DSGraph/HardBUCase.ll | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Analysis/DSGraph/HardBUCase.ll b/test/Analysis/DSGraph/HardBUCase.ll new file mode 100644 index 0000000..e8f316f --- /dev/null +++ b/test/Analysis/DSGraph/HardBUCase.ll @@ -0,0 +1,19 @@ + +%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 +} |