[PATCH] D34785: [NFC] Remove multiple semicolons
Mandeep Singh Grang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 28 16:15:36 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL306613: [NFC] Remove multiple semicolons (authored by mgrang).
Changed prior to commit:
https://reviews.llvm.org/D34785?vs=104537&id=104539#toc
Repository:
rL LLVM
https://reviews.llvm.org/D34785
Files:
llvm/trunk/bindings/ocaml/target/target_ocaml.c
llvm/trunk/tools/bugpoint/ToolRunner.cpp
Index: llvm/trunk/tools/bugpoint/ToolRunner.cpp
===================================================================
--- llvm/trunk/tools/bugpoint/ToolRunner.cpp
+++ llvm/trunk/tools/bugpoint/ToolRunner.cpp
@@ -861,7 +861,7 @@
errs() << "\n";);
if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", ""))
return ProcessFailure(CCPath, &CCArgs[0]);
- return Error::success();;
+ return Error::success();
}
/// create - Try to find the CC executable
Index: llvm/trunk/bindings/ocaml/target/target_ocaml.c
===================================================================
--- llvm/trunk/bindings/ocaml/target/target_ocaml.c
+++ llvm/trunk/bindings/ocaml/target/target_ocaml.c
@@ -77,7 +77,7 @@
/* Llvm.llcontext -> DataLayout.t -> Llvm.lltype */
CAMLprim LLVMTypeRef llvm_datalayout_intptr_type(LLVMContextRef C, value DL) {
- return LLVMIntPtrTypeInContext(C, DataLayout_val(DL));;
+ return LLVMIntPtrTypeInContext(C, DataLayout_val(DL));
}
/* int -> DataLayout.t -> int */
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D34785.104539.patch
Type: text/x-patch
Size: 1005 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170628/ef37dbd9/attachment.bin>
More information about the llvm-commits
mailing list