From aa250b806705f4a219983528dc54e1d9149df86d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Aug 2002 20:49:42 +0000 Subject: [PATCH] New testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3510 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CBackend/2002-08-26-IndirectCallTest.ll | 14 ++++++++++++++ .../CBackend/2002-08-26-IndirectCallTest.ll | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 test/CBackend/2002-08-26-IndirectCallTest.ll create mode 100644 test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll diff --git a/test/CBackend/2002-08-26-IndirectCallTest.ll b/test/CBackend/2002-08-26-IndirectCallTest.ll new file mode 100644 index 00000000000..74f5075b750 --- /dev/null +++ b/test/CBackend/2002-08-26-IndirectCallTest.ll @@ -0,0 +1,14 @@ +; Indirect function call test... found by Joel & Brian +; + +%taskArray = uninitialized global int* + +void %test(int %X) { + %Y = add int %X, -1 ; :1 [#uses=3] + %cast100 = cast int %Y to uint ; [#uses=1] + %gep100 = getelementptr int** %taskArray, uint %cast100 ; [#uses=1] + %fooPtr = load int** %gep100 ; [#uses=1] + %cast101 = cast int* %fooPtr to void (int)* ; [#uses=1] + call void %cast101( int 1000 ) + ret void +} diff --git a/test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll b/test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll new file mode 100644 index 00000000000..74f5075b750 --- /dev/null +++ b/test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll @@ -0,0 +1,14 @@ +; Indirect function call test... found by Joel & Brian +; + +%taskArray = uninitialized global int* + +void %test(int %X) { + %Y = add int %X, -1 ; :1 [#uses=3] + %cast100 = cast int %Y to uint ; [#uses=1] + %gep100 = getelementptr int** %taskArray, uint %cast100 ; [#uses=1] + %fooPtr = load int** %gep100 ; [#uses=1] + %cast101 = cast int* %fooPtr to void (int)* ; [#uses=1] + call void %cast101( int 1000 ) + ret void +}