mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[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
93bf3cda7e
commit
4137c9c02a
@ -77,7 +77,7 @@ CAMLprim value llvm_datalayout_pointer_size(value DL) {
|
||||
|
||||
/* 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 */
|
||||
|
@ -861,7 +861,7 @@ Error CC::MakeSharedObject(const std::string &InputFile, FileType fileType,
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user