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 */ 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