diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-05 17:55:26 +0000 |
commit | aceba31b7a04fd28680209b2677915378877bc13 (patch) | |
tree | 14ccb6bb44f8ffb397c928e23771b50c43688ea4 /test/Integer | |
parent | ba25f0924ef3be887fb67ed6a66f3dee77461f44 (diff) |
Delete useless trailing semicolons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Integer')
-rw-r--r-- | test/Integer/BitPacked.ll | 4 | ||||
-rw-r--r-- | test/Integer/packed_bt.ll | 4 | ||||
-rw-r--r-- | test/Integer/testvarargs_bt.ll | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/Integer/BitPacked.ll b/test/Integer/BitPacked.ll index d363a81e73..e6e453ab0c 100644 --- a/test/Integer/BitPacked.ll +++ b/test/Integer/BitPacked.ll @@ -2,8 +2,8 @@ ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -@foo1 = external global <4 x float>; -@foo2 = external global <2 x i10>; +@foo1 = external global <4 x float> +@foo2 = external global <2 x i10> define void @main() diff --git a/test/Integer/packed_bt.ll b/test/Integer/packed_bt.ll index 5a2045d6a2..f6ea87ce6c 100644 --- a/test/Integer/packed_bt.ll +++ b/test/Integer/packed_bt.ll @@ -2,8 +2,8 @@ ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -@foo1 = external global <4 x float>; -@foo2 = external global <2 x i10>; +@foo1 = external global <4 x float> +@foo2 = external global <2 x i10> define void @main() diff --git a/test/Integer/testvarargs_bt.ll b/test/Integer/testvarargs_bt.ll index a645c84ef3..3227d14539 100644 --- a/test/Integer/testvarargs_bt.ll +++ b/test/Integer/testvarargs_bt.ll @@ -7,7 +7,7 @@ declare i31 @"printf"(i8*, ...) ;; Prototype for: i32 __builtin_printf(const c define i31 @"testvarar"() begin - call i31(i8*, ...) *@printf(i8 * null, i31 12, i8 42); + call i31(i8*, ...) *@printf(i8 * null, i31 12, i8 42) ret i31 %1 end |