diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-19 01:41:04 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-19 01:41:04 +0000 |
commit | 3f04773f7884c1c7b8b89dddfb177b1f41f54c56 (patch) | |
tree | 8c66730e481d8ce70c0a8e082bfdbadc0badcc4b /llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx | |
parent | 22011e90c992533411d2efc17f5efd365a636117 (diff) | |
download | bcm5719-llvm-3f04773f7884c1c7b8b89dddfb177b1f41f54c56.tar.gz bcm5719-llvm-3f04773f7884c1c7b8b89dddfb177b1f41f54c56.zip |
Remove llvm-upgrade and update tests.
llvm-svn: 47296
Diffstat (limited to 'llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx')
-rw-r--r-- | llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx b/llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx index 99bb602ce3e..a8ee438cc43 100644 --- a/llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx +++ b/llvm/test/CodeGen/CBackend/2004-11-13-FunctionPointerCast.llx @@ -1,17 +1,12 @@ ; The CBE should not emit code that casts the function pointer. This causes ; GCC to get testy and insert trap instructions instead of doing the right ; thing. :( -; RUN: llvm-upgrade < %s | llvm-as | llc -march=c +; RUN: llvm-as < %s | llc -march=c -implementation +declare void @external(i8*) -declare void %external(sbyte*) - -int %test(int *%X) { - %RV = call int (int*)* cast (void(sbyte*)* %external to int(int*)*)(int* %X) - ret int %RV +define i32 @test(i32* %X) { + %RV = call i32 bitcast (void (i8*)* @external to i32 (i32*)*)( i32* %X ) ; <i32> [#uses=1] + ret i32 %RV } - - - |