forked from OSchip/llvm-project
[NFC] Remove multiple semicolons
Reviewers: bogner, whitequark, mgrang Reviewed By: mgrang Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34785 llvm-svn: 306613
This commit is contained in:
parent
396a3a45e2
commit
d159c688aa
|
@ -77,7 +77,7 @@ CAMLprim value llvm_datalayout_pointer_size(value DL) {
|
||||||
|
|
||||||
/* Llvm.llcontext -> DataLayout.t -> Llvm.lltype */
|
/* Llvm.llcontext -> DataLayout.t -> Llvm.lltype */
|
||||||
CAMLprim LLVMTypeRef llvm_datalayout_intptr_type(LLVMContextRef C, value DL) {
|
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 */
|
/* int -> DataLayout.t -> int */
|
||||||
|
|
|
@ -861,7 +861,7 @@ Error CC::MakeSharedObject(const std::string &InputFile, FileType fileType,
|
||||||
errs() << "\n";);
|
errs() << "\n";);
|
||||||
if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", ""))
|
if (RunProgramWithTimeout(CCPath, &CCArgs[0], "", "", ""))
|
||||||
return ProcessFailure(CCPath, &CCArgs[0]);
|
return ProcessFailure(CCPath, &CCArgs[0]);
|
||||||
return Error::success();;
|
return Error::success();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// create - Try to find the CC executable
|
/// create - Try to find the CC executable
|
||||||
|
|
Loading…
Reference in New Issue