diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-26 20:49:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-26 20:49:42 +0000 |
commit | aa250b806705f4a219983528dc54e1d9149df86d (patch) | |
tree | eceab9fc931cb90973be5f2669e8a9c1b4207bc0 /test/CodeGen/CBackend | |
parent | 93aeea3748b11fa213b345edf3c86275a4936a31 (diff) | |
download | external_llvm-aa250b806705f4a219983528dc54e1d9149df86d.zip external_llvm-aa250b806705f4a219983528dc54e1d9149df86d.tar.gz external_llvm-aa250b806705f4a219983528dc54e1d9149df86d.tar.bz2 |
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/CBackend')
-rw-r--r-- | test/CodeGen/CBackend/2002-08-26-IndirectCallTest.ll | 14 |
1 files changed, 14 insertions, 0 deletions
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 0000000..74f5075 --- /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 ; <int>:1 [#uses=3] + %cast100 = cast int %Y to uint ; <uint> [#uses=1] + %gep100 = getelementptr int** %taskArray, uint %cast100 ; <int**> [#uses=1] + %fooPtr = load int** %gep100 ; <int*> [#uses=1] + %cast101 = cast int* %fooPtr to void (int)* ; <void (int)*> [#uses=1] + call void %cast101( int 1000 ) + ret void +} |