diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2007-07-25 19:47:31 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2007-07-25 19:47:31 +0000 |
commit | fb95b0ea190fa2d25e8a2e98fa5c88d1fa2fdd9a (patch) | |
tree | c33f8c2bee7e043bc6b97b90a831d8cc84d04ac5 /llvm/test/Bytecode | |
parent | cf0a5349de836f6f5a8bad66cb7b6858b1337108 (diff) | |
download | bcm5719-llvm-fb95b0ea190fa2d25e8a2e98fa5c88d1fa2fdd9a.tar.gz bcm5719-llvm-fb95b0ea190fa2d25e8a2e98fa5c88d1fa2fdd9a.zip |
Moving regression test to reflect move in source and headers to Bitcode.
llvm-svn: 40488
Diffstat (limited to 'llvm/test/Bytecode')
-rw-r--r-- | llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll | 10 | ||||
-rw-r--r-- | llvm/test/Bytecode/dg.exp | 3 | ||||
-rw-r--r-- | llvm/test/Bytecode/memcpy.ll | 17 |
3 files changed, 0 insertions, 30 deletions
diff --git a/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll b/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll deleted file mode 100644 index 4c768d63cb6..00000000000 --- a/llvm/test/Bytecode/2006-12-11-Cast-ConstExpr.ll +++ /dev/null @@ -1,10 +0,0 @@ -; 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: grep {bitcast (} - -%G = external global int - -float %tryit(int %A) { - ret float bitcast( int ptrtoint (int* %G to int) to float) -} diff --git a/llvm/test/Bytecode/dg.exp b/llvm/test/Bytecode/dg.exp deleted file mode 100644 index 879685ca879..00000000000 --- a/llvm/test/Bytecode/dg.exp +++ /dev/null @@ -1,3 +0,0 @@ -load_lib llvm.exp - -RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] diff --git a/llvm/test/Bytecode/memcpy.ll b/llvm/test/Bytecode/memcpy.ll deleted file mode 100644 index 398b8961a1d..00000000000 --- a/llvm/test/Bytecode/memcpy.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f - -void %test(int* %P, int* %Q) { -entry: - %tmp.1 = cast int* %P to sbyte* ; <sbyte*> [#uses=2] - %tmp.3 = cast int* %Q to sbyte* ; <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 -} - -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) |