From 2d290f9dc4503a038f61e7cbc6717b478817c4cc Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Sun, 17 Feb 2008 00:13:09 +0000 Subject: [PATCH] Remove llvm-upgrade. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47230 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Bitcode/2006-12-11-Cast-ConstExpr.ll | 8 +++--- test/Bitcode/memcpy.ll | 30 +++++++++++++---------- 2 files changed, 21 insertions(+), 17 deletions(-) diff --git a/test/Bitcode/2006-12-11-Cast-ConstExpr.ll b/test/Bitcode/2006-12-11-Cast-ConstExpr.ll index 4c768d63cb6..7e6bb7b6f92 100644 --- a/test/Bitcode/2006-12-11-Cast-ConstExpr.ll +++ b/test/Bitcode/2006-12-11-Cast-ConstExpr.ll @@ -1,10 +1,10 @@ ; This test ensures that we get a bitcast constant expression in and out, ; not a sitofp constant expression. -; RUN: llvm-upgrade < %s | llvm-as | llvm-dis | \ +; RUN: llvm-as < %s | llvm-dis | \ ; RUN: grep {bitcast (} -%G = external global int +@G = external global i32 -float %tryit(int %A) { - ret float bitcast( int ptrtoint (int* %G to int) to float) +define float @tryit(i32 %A) { + ret float sitofp( i32 ptrtoint (i32* @G to i32) to float) } diff --git a/test/Bitcode/memcpy.ll b/test/Bitcode/memcpy.ll index 398b8961a1d..13daeeb181c 100644 --- a/test/Bitcode/memcpy.ll +++ b/test/Bitcode/memcpy.ll @@ -1,17 +1,21 @@ -; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f +; RUN: llvm-as < %s -o /dev/null -f -void %test(int* %P, int* %Q) { +define void @test(i32* %P, i32* %Q) { entry: - %tmp.1 = cast int* %P to sbyte* ; [#uses=2] - %tmp.3 = cast int* %Q to sbyte* ; [#uses=3] - tail call void %llvm.memcpy.i32( sbyte* %tmp.1, sbyte* %tmp.3, uint 100000, uint 1 ) - tail call void %llvm.memcpy.i64( sbyte* %tmp.1, sbyte* %tmp.3, ulong 100000, uint 1 ) - tail call void %llvm.memset.i32( sbyte* %tmp.3, ubyte 14, uint 10000, uint 0 ) - tail call void %llvm.memmove.i32( sbyte* %tmp.1, sbyte* %tmp.3, uint 123124, uint 1 ) - ret void + %tmp.1 = bitcast i32* %P to i8* ; [#uses=3] + %tmp.3 = bitcast i32* %Q to i8* ; [#uses=4] + tail call void @llvm.memcpy.i32( i8* %tmp.1, i8* %tmp.3, i32 100000, i32 1 ) + tail call void @llvm.memcpy.i64( i8* %tmp.1, i8* %tmp.3, i64 100000, i32 1 ) + tail call void @llvm.memset.i32( i8* %tmp.3, i8 14, i32 10000, i32 0 ) + tail call void @llvm.memmove.i32( i8* %tmp.1, i8* %tmp.3, i32 123124, i32 1 ) + ret void } -declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint, uint) -declare void %llvm.memcpy.i64(sbyte*, sbyte*, ulong, uint) -declare void %llvm.memset.i32(sbyte*, ubyte, uint, uint) -declare void %llvm.memmove.i32(sbyte*, sbyte*, uint, uint) +declare void @llvm.memcpy.i32(i8*, i8*, i32, i32) + +declare void @llvm.memcpy.i64(i8*, i8*, i64, i32) + +declare void @llvm.memset.i32(i8*, i8, i32, i32) + +declare void @llvm.memmove.i32(i8*, i8*, i32, i32) + -- 2.34.1