diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-02-14 07:57:12 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-02-14 07:57:12 +0000 |
commit | 74bb9f5ad413f38958e64052a8d409fb5f20ec33 (patch) | |
tree | f929dabf6d10ad6d73d324f711989b2ad40ddcbb /test/Assembler/2002-08-15-CastAmbiguity.ll | |
parent | 6a38ec3796ec8f79cfec55defdc5913ce15ff70a (diff) | |
download | external_llvm-74bb9f5ad413f38958e64052a8d409fb5f20ec33.zip external_llvm-74bb9f5ad413f38958e64052a8d409fb5f20ec33.tar.gz external_llvm-74bb9f5ad413f38958e64052a8d409fb5f20ec33.tar.bz2 |
Remove llvm-upgrade
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2002-08-15-CastAmbiguity.ll')
-rw-r--r-- | test/Assembler/2002-08-15-CastAmbiguity.ll | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/test/Assembler/2002-08-15-CastAmbiguity.ll b/test/Assembler/2002-08-15-CastAmbiguity.ll index c44ee67..267a0d3 100644 --- a/test/Assembler/2002-08-15-CastAmbiguity.ll +++ b/test/Assembler/2002-08-15-CastAmbiguity.ll @@ -1,8 +1,6 @@ -; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f - - -void %test(int %X) { - call void (int)* cast (void(int) * %test to void(int) *) (int 6) - ret void +; RUN: llvm-as < %s -o /dev/null -f +define void @test(i32 %X) { + call void @test( i32 6 ) + ret void } |