summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/darwin-bzero.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-01-05 17:55:26 +0000
committerDan Gohman <gohman@apple.com>2010-01-05 17:55:26 +0000
commitaceba31b7a04fd28680209b2677915378877bc13 (patch)
tree14ccb6bb44f8ffb397c928e23771b50c43688ea4 /test/CodeGen/X86/darwin-bzero.ll
parentba25f0924ef3be887fb67ed6a66f3dee77461f44 (diff)
downloadllvm-aceba31b7a04fd28680209b2677915378877bc13.tar.gz
llvm-aceba31b7a04fd28680209b2677915378877bc13.tar.bz2
llvm-aceba31b7a04fd28680209b2677915378877bc13.tar.xz
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/CodeGen/X86/darwin-bzero.ll')
-rw-r--r--test/CodeGen/X86/darwin-bzero.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/darwin-bzero.ll b/test/CodeGen/X86/darwin-bzero.ll
index a3c1e6f0c5..a9573cfc6a 100644
--- a/test/CodeGen/X86/darwin-bzero.ll
+++ b/test/CodeGen/X86/darwin-bzero.ll
@@ -3,6 +3,6 @@
declare void @llvm.memset.i32(i8*, i8, i32, i32)
define void @foo(i8* %p, i32 %len) {
- call void @llvm.memset.i32(i8* %p, i8 0, i32 %len, i32 1);
+ call void @llvm.memset.i32(i8* %p, i8 0, i32 %len, i32 1)
ret void
}