summaryrefslogtreecommitdiff
path: root/test/Integer
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-03-28 02:38:26 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-03-28 02:38:26 +0000
commit5373b721c0c76c54f948b9097ba7f4737dbab730 (patch)
tree64fa80203e3e09c75ace8c8965a9ad819e83b6d2 /test/Integer
parent83145c3f19685bf17df4b7a4579a92bda2020a94 (diff)
downloadllvm-5373b721c0c76c54f948b9097ba7f4737dbab730.tar.gz
llvm-5373b721c0c76c54f948b9097ba7f4737dbab730.tar.bz2
llvm-5373b721c0c76c54f948b9097ba7f4737dbab730.tar.xz
Remove use of implementation keyword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35412 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Integer')
-rw-r--r--test/Integer/BitArith.ll1
-rw-r--r--test/Integer/BitBit.ll1
-rw-r--r--test/Integer/BitCast.ll1
-rw-r--r--test/Integer/BitIcmp.ll1
-rw-r--r--test/Integer/BitMem.ll1
-rw-r--r--test/Integer/BitMisc.ll1
-rw-r--r--test/Integer/BitPacked.ll1
-rw-r--r--test/Integer/basictest_bt.ll1
-rw-r--r--test/Integer/cfgstructures_bt.ll1
-rw-r--r--test/Integer/constexpr_bt.ll1
-rw-r--r--test/Integer/constpointer_bt.ll1
-rw-r--r--test/Integer/forwardreftest_bt.ll1
-rw-r--r--test/Integer/globalvars_bt.ll1
-rw-r--r--test/Integer/indirectcall2_bt.ll1
-rw-r--r--test/Integer/indirectcall_bt.ll1
-rw-r--r--test/Integer/opaquetypes_bt.ll1
-rw-r--r--test/Integer/packed_bt.ll1
-rw-r--r--test/Integer/packed_struct_bt.ll1
-rw-r--r--test/Integer/paramattrs_bt.ll1
-rw-r--r--test/Integer/prototype_bt.ll1
-rw-r--r--test/Integer/recursivetype_bt.ll1
-rw-r--r--test/Integer/simplecalltest_bt.ll1
-rw-r--r--test/Integer/small_bt.ll1
-rw-r--r--test/Integer/testalloca_bt.ll1
-rw-r--r--test/Integer/testarith_bt.ll1
-rw-r--r--test/Integer/testconstants_bt.ll1
-rw-r--r--test/Integer/testicmp_bt.ll1
-rw-r--r--test/Integer/testlogical_bt.ll1
-rw-r--r--test/Integer/testlogical_new_bt.ll1
-rw-r--r--test/Integer/testmemory_bt.ll1
-rw-r--r--test/Integer/testswitch_bt.ll1
-rw-r--r--test/Integer/testvarargs_bt.ll1
-rw-r--r--test/Integer/undefined_bt.ll1
-rw-r--r--test/Integer/unreachable_bt.ll1
-rw-r--r--test/Integer/varargs_bt.ll1
-rw-r--r--test/Integer/varargs_new_bt.ll1
36 files changed, 0 insertions, 36 deletions
diff --git a/test/Integer/BitArith.ll b/test/Integer/BitArith.ll
index e9c2cde30c..350a984994 100644
--- a/test/Integer/BitArith.ll
+++ b/test/Integer/BitArith.ll
@@ -5,7 +5,6 @@
declare void @"foo"(i31 %i, i63 %j, i10 %k)
-implementation
; foo test basic arith operations
define void @"foo"(i31 %i, i63 %j, i10 %k)
diff --git a/test/Integer/BitBit.ll b/test/Integer/BitBit.ll
index 944d51e799..420bbe5a5f 100644
--- a/test/Integer/BitBit.ll
+++ b/test/Integer/BitBit.ll
@@ -4,7 +4,6 @@
declare void @"foo"(i31 %i, i33 %j)
-implementation
; foo test basic bitwise operations
define void @"foo"(i31 %i, i33 %j)
diff --git a/test/Integer/BitCast.ll b/test/Integer/BitCast.ll
index 53f66f6630..c589ff0766 100644
--- a/test/Integer/BitCast.ll
+++ b/test/Integer/BitCast.ll
@@ -4,7 +4,6 @@
declare void @"foo"(i31 %i, i1280 %j, i1 %k, float %f)
-implementation
; foo test basic arith operations
define void @"foo"(i31 %i, i1280 %j, i1 %k, float %f)
diff --git a/test/Integer/BitIcmp.ll b/test/Integer/BitIcmp.ll
index 6c2a79bd7c..c22461224d 100644
--- a/test/Integer/BitIcmp.ll
+++ b/test/Integer/BitIcmp.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i55 @"simpleIcmp"(i55 %i0, i55 %j0)
begin
diff --git a/test/Integer/BitMem.ll b/test/Integer/BitMem.ll
index 5e46fb5465..2c093bc990 100644
--- a/test/Integer/BitMem.ll
+++ b/test/Integer/BitMem.ll
@@ -4,7 +4,6 @@
declare void @"foo"()
-implementation
; foo test basic arith operations
define void @"foo"() {
diff --git a/test/Integer/BitMisc.ll b/test/Integer/BitMisc.ll
index 3bdbee5bb9..8ce4d4add7 100644
--- a/test/Integer/BitMisc.ll
+++ b/test/Integer/BitMisc.ll
@@ -14,7 +14,6 @@
@ZeroInit = global { [100 x i19 ], [40 x float ] } { [100 x i19] zeroinitializer,
[40 x float] zeroinitializer }
-implementation
define i19 @"foo"(i19 %blah)
begin
diff --git a/test/Integer/BitPacked.ll b/test/Integer/BitPacked.ll
index 26c9ee95c7..d363a81e73 100644
--- a/test/Integer/BitPacked.ll
+++ b/test/Integer/BitPacked.ll
@@ -5,7 +5,6 @@
@foo1 = external global <4 x float>;
@foo2 = external global <2 x i10>;
-implementation ; Functions:
define void @main()
{
diff --git a/test/Integer/basictest_bt.ll b/test/Integer/basictest_bt.ll
index e5771075b1..5c98856d06 100644
--- a/test/Integer/basictest_bt.ll
+++ b/test/Integer/basictest_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation ; Functions:
; Test "stripped" format where nothing is symbolic... this is how the bytecode
; format looks anyways (except for negative vs positive offsets)...
diff --git a/test/Integer/cfgstructures_bt.ll b/test/Integer/cfgstructures_bt.ll
index 1dbceb65fc..09aec1fed2 100644
--- a/test/Integer/cfgstructures_bt.ll
+++ b/test/Integer/cfgstructures_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
;; This is an irreducible flow graph
diff --git a/test/Integer/constexpr_bt.ll b/test/Integer/constexpr_bt.ll
index 1faa287e52..fc8b06d4f4 100644
--- a/test/Integer/constexpr_bt.ll
+++ b/test/Integer/constexpr_bt.ll
@@ -81,5 +81,4 @@ global float 0.0
;;---------------------------------------------------
-implementation
diff --git a/test/Integer/constpointer_bt.ll b/test/Integer/constpointer_bt.ll
index 5d541571bb..6be9ec336a 100644
--- a/test/Integer/constpointer_bt.ll
+++ b/test/Integer/constpointer_bt.ll
@@ -29,5 +29,4 @@ declare void @"f"() ;; External method
@somestr = constant [11x i8] c"hello world"
@sptr2 = global [11x i8]* @somestr
-implementation
diff --git a/test/Integer/forwardreftest_bt.ll b/test/Integer/forwardreftest_bt.ll
index 6e2936d84e..5d73eff2f5 100644
--- a/test/Integer/forwardreftest_bt.ll
+++ b/test/Integer/forwardreftest_bt.ll
@@ -9,7 +9,6 @@
type i55(i55(i55)*)
%thisfuncty = type i55 (i55) *
-implementation
declare void @F(%thisfuncty, %thisfuncty, %thisfuncty)
diff --git a/test/Integer/globalvars_bt.ll b/test/Integer/globalvars_bt.ll
index 702f57edcb..5c43185574 100644
--- a/test/Integer/globalvars_bt.ll
+++ b/test/Integer/globalvars_bt.ll
@@ -15,7 +15,6 @@
@ZeroInit = global { [100 x i27 ], [40 x float ] } { [100 x i27] zeroinitializer,
[40 x float] zeroinitializer }
-implementation
define i27 @"foo"(i27 %blah)
begin
diff --git a/test/Integer/indirectcall2_bt.ll b/test/Integer/indirectcall2_bt.ll
index 1652f1691c..5b7c68df22 100644
--- a/test/Integer/indirectcall2_bt.ll
+++ b/test/Integer/indirectcall2_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i63 @"test"(i63 %X)
begin
diff --git a/test/Integer/indirectcall_bt.ll b/test/Integer/indirectcall_bt.ll
index 67cff4e754..d586fca821 100644
--- a/test/Integer/indirectcall_bt.ll
+++ b/test/Integer/indirectcall_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
declare i32 @"atoi"(i8 *)
diff --git a/test/Integer/opaquetypes_bt.ll b/test/Integer/opaquetypes_bt.ll
index f5c6635927..a1ba799c2c 100644
--- a/test/Integer/opaquetypes_bt.ll
+++ b/test/Integer/opaquetypes_bt.ll
@@ -55,7 +55,6 @@ type %BBB
%Y1 = type { { \3 * }, \2 * }
%Z1 = type { { \3 * }, [12x\3] *, { { { \5 * } } } }
-implementation
diff --git a/test/Integer/packed_bt.ll b/test/Integer/packed_bt.ll
index a2fa127759..5a2045d6a2 100644
--- a/test/Integer/packed_bt.ll
+++ b/test/Integer/packed_bt.ll
@@ -5,7 +5,6 @@
@foo1 = external global <4 x float>;
@foo2 = external global <2 x i10>;
-implementation ; Functions:
define void @main()
{
diff --git a/test/Integer/packed_struct_bt.ll b/test/Integer/packed_struct_bt.ll
index abd303527f..a2ccd1d06c 100644
--- a/test/Integer/packed_struct_bt.ll
+++ b/test/Integer/packed_struct_bt.ll
@@ -12,7 +12,6 @@
@E1 = global <{i8, i35, i35}> <{i8 1, i35 2, i35 3}>
@E2 = global {i8, i35, i35} {i8 4, i35 5, i35 6}
-implementation ; Functions:
define i35 @main()
{
diff --git a/test/Integer/paramattrs_bt.ll b/test/Integer/paramattrs_bt.ll
index ac382728f8..7959fa0fe5 100644
--- a/test/Integer/paramattrs_bt.ll
+++ b/test/Integer/paramattrs_bt.ll
@@ -8,7 +8,6 @@
declare i16 @"test"(i16 sext %arg) sext
declare i8 @"test2" (i16 zext %a2) zext
-implementation
define i33 @main(i33 %argc, i8 **%argv) {
%val = trunc i33 %argc to i16
diff --git a/test/Integer/prototype_bt.ll b/test/Integer/prototype_bt.ll
index f1be2aaaa7..2236e8bf38 100644
--- a/test/Integer/prototype_bt.ll
+++ b/test/Integer/prototype_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
declare i31 @"bar"(i31 %in)
diff --git a/test/Integer/recursivetype_bt.ll b/test/Integer/recursivetype_bt.ll
index 08a1413bfc..d5ce3f5dd4 100644
--- a/test/Integer/recursivetype_bt.ll
+++ b/test/Integer/recursivetype_bt.ll
@@ -43,7 +43,6 @@
declare i8 *@"malloc"(i32)
;;**********************
-implementation
;;**********************
define void @"InsertIntoListTail"(%list** %L, i36 %Data)
diff --git a/test/Integer/simplecalltest_bt.ll b/test/Integer/simplecalltest_bt.ll
index e7c675af4a..45dc0f1aac 100644
--- a/test/Integer/simplecalltest_bt.ll
+++ b/test/Integer/simplecalltest_bt.ll
@@ -4,7 +4,6 @@
%FunTy = type i31(i31)
-implementation
define void @"invoke"(%FunTy *%x)
begin
diff --git a/test/Integer/small_bt.ll b/test/Integer/small_bt.ll
index f82c8c95c8..00fcace0fb 100644
--- a/test/Integer/small_bt.ll
+++ b/test/Integer/small_bt.ll
@@ -4,7 +4,6 @@
%x = type i19
-implementation
define i19 @"foo"(i19 %in)
begin
diff --git a/test/Integer/testalloca_bt.ll b/test/Integer/testalloca_bt.ll
index 267c061959..e8e73c5087 100644
--- a/test/Integer/testalloca_bt.ll
+++ b/test/Integer/testalloca_bt.ll
@@ -6,7 +6,6 @@
%inners = type {float, {i8 } }
%struct = type { i33 , {float, {i8 } } , i64 }
-implementation
define i33 @testfunction(i33 %i0, i33 %j0)
begin
diff --git a/test/Integer/testarith_bt.ll b/test/Integer/testarith_bt.ll
index f962e393d3..0820399a30 100644
--- a/test/Integer/testarith_bt.ll
+++ b/test/Integer/testarith_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i31 @"simpleArith"(i31 %i0, i31 %j0)
begin
diff --git a/test/Integer/testconstants_bt.ll b/test/Integer/testconstants_bt.ll
index 71cbf1310a..8ca49cf524 100644
--- a/test/Integer/testconstants_bt.ll
+++ b/test/Integer/testconstants_bt.ll
@@ -6,7 +6,6 @@
@array = constant [2 x i55] [ i55 12, i55 52 ]
constant { i55, i55 } { i55 4, i55 3 }
-implementation
define [2 x i55]* @testfunction(i55 %i0, i55 %j0)
begin
diff --git a/test/Integer/testicmp_bt.ll b/test/Integer/testicmp_bt.ll
index 4dc6d98306..40a2465b5a 100644
--- a/test/Integer/testicmp_bt.ll
+++ b/test/Integer/testicmp_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i31 @"simpleIcmp"(i31 %i0, i31 %j0)
begin
diff --git a/test/Integer/testlogical_bt.ll b/test/Integer/testlogical_bt.ll
index cd8a9499a6..a2c927d5d7 100644
--- a/test/Integer/testlogical_bt.ll
+++ b/test/Integer/testlogical_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i31 @"simpleAdd"(i31 %i0, i31 %j0)
begin
diff --git a/test/Integer/testlogical_new_bt.ll b/test/Integer/testlogical_new_bt.ll
index 349b4ab95f..49a26dc07b 100644
--- a/test/Integer/testlogical_new_bt.ll
+++ b/test/Integer/testlogical_new_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
define i31 @"simpleAdd"(i31 %i0, i31 %j0)
begin
diff --git a/test/Integer/testmemory_bt.ll b/test/Integer/testmemory_bt.ll
index fe0465c659..e503c56a33 100644
--- a/test/Integer/testmemory_bt.ll
+++ b/test/Integer/testmemory_bt.ll
@@ -6,7 +6,6 @@
%struct = type { i31 , {float, {i9 } } , i64 }
%complexty = type {i31, {[4 x i9 *], float}, double}
-implementation
define i31 @"main"()
begin
diff --git a/test/Integer/testswitch_bt.ll b/test/Integer/testswitch_bt.ll
index 0ea2ac97b3..bf7cdc510d 100644
--- a/test/Integer/testswitch_bt.ll
+++ b/test/Integer/testswitch_bt.ll
@@ -4,7 +4,6 @@
%i35 = type i35
-implementation
define i35 @"squared"(%i35 %i0)
begin
diff --git a/test/Integer/testvarargs_bt.ll b/test/Integer/testvarargs_bt.ll
index 68cb36414c..a645c84ef3 100644
--- a/test/Integer/testvarargs_bt.ll
+++ b/test/Integer/testvarargs_bt.ll
@@ -2,7 +2,6 @@
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
-implementation
declare i31 @"printf"(i8*, ...) ;; Prototype for: i32 __builtin_printf(const char*, ...)
diff --git a/test/Integer/undefined_bt.ll b/test/Integer/undefined_bt.ll
index a1fb61aca6..7eba59039b 100644
--- a/test/Integer/undefined_bt.ll
+++ b/test/Integer/undefined_bt.ll
@@ -5,7 +5,6 @@
@X = global i31 undef
-implementation
declare i32 @"atoi"(i8 *)
diff --git a/test/Integer/unreachable_bt.ll b/test/Integer/unreachable_bt.ll
index 60b7bf8eb9..cb65d4b9ec 100644
--- a/test/Integer/unreachable_bt.ll
+++ b/test/Integer/unreachable_bt.ll
@@ -3,7 +3,6 @@
; RUN: diff %t1.ll %t2.ll
-implementation
declare void @bar()
diff --git a/test/Integer/varargs_bt.ll b/test/Integer/varargs_bt.ll
index 36f96a3494..e740fd36b4 100644
--- a/test/Integer/varargs_bt.ll
+++ b/test/Integer/varargs_bt.ll
@@ -5,7 +5,6 @@
; Demonstrate all of the variable argument handling intrinsic functions plus
; the va_arg instruction.
-implementation
declare void @llvm.va_start(i8** %ap)
declare void @llvm.va_copy(i8** %aq, i8** %ap)
declare void @llvm.va_end(i8** %ap)
diff --git a/test/Integer/varargs_new_bt.ll b/test/Integer/varargs_new_bt.ll
index baa055ede9..59bb3f2969 100644
--- a/test/Integer/varargs_new_bt.ll
+++ b/test/Integer/varargs_new_bt.ll
@@ -5,7 +5,6 @@
; Demonstrate all of the variable argument handling intrinsic functions plus
; the va_arg instruction.
-implementation ; Functions:
declare void @llvm.va_start(i8**)
declare void @llvm.va_copy(i8**, i8*)
declare void @llvm.va_end(i8**)