Skip to content

Commit d159c68

Browse files
author
Mandeep Singh Grang
committed
[NFC] Remove multiple semicolons
Reviewers: bogner, whitequark, mgrang Reviewed By: mgrang Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34785 llvm-svn: 306613
1 parent 396a3a4 commit d159c68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/bindings/ocaml/target/target_ocaml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ CAMLprim value llvm_datalayout_pointer_size(value DL) {
7777

7878
/* Llvm.llcontext -> DataLayout.t -> Llvm.lltype */
7979
CAMLprim LLVMTypeRef llvm_datalayout_intptr_type(LLVMContextRef C, value DL) {
80-
return LLVMIntPtrTypeInContext(C, DataLayout_val(DL));;
80+
return LLVMIntPtrTypeInContext(C, DataLayout_val(DL));
8181
}
8282

8383
/* int -> DataLayout.t -> int */

llvm/tools/bugpoint/ToolRunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ Error CC::MakeSharedObject(const std::string &InputFile, FileType fileType,
861861
errs() << "\n";);
862862
if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", ""))
863863
return ProcessFailure(CCPath, &CCArgs[0]);
864-
return Error::success();;
864+
return Error::success();
865865
}
866866

867867
/// create - Try to find the CC executable

0 commit comments

Comments
 (0)