mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
Rename createIRObjectFile to just create.
It is a static method of IRObjectFile, so having to use IRObjectFile::createIRObjectFile was redundant. llvm-svn: 223822
This commit is contained in:
parent
867128021f
commit
52a8798c70
@ -65,8 +65,8 @@ public:
|
||||
static ErrorOr<MemoryBufferRef>
|
||||
findBitcodeInMemBuffer(MemoryBufferRef Object);
|
||||
|
||||
static ErrorOr<std::unique_ptr<IRObjectFile>>
|
||||
createIRObjectFile(MemoryBufferRef Object, LLVMContext &Context);
|
||||
static ErrorOr<std::unique_ptr<IRObjectFile>> create(MemoryBufferRef Object,
|
||||
LLVMContext &Context);
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -290,8 +290,8 @@ ErrorOr<MemoryBufferRef> IRObjectFile::findBitcodeInMemBuffer(MemoryBufferRef Ob
|
||||
}
|
||||
|
||||
ErrorOr<std::unique_ptr<IRObjectFile>>
|
||||
llvm::object::IRObjectFile::createIRObjectFile(MemoryBufferRef Object,
|
||||
LLVMContext &Context) {
|
||||
llvm::object::IRObjectFile::create(MemoryBufferRef Object,
|
||||
LLVMContext &Context) {
|
||||
ErrorOr<MemoryBufferRef> BCOrErr = findBitcodeInMemBuffer(Object);
|
||||
if (!BCOrErr)
|
||||
return BCOrErr.getError();
|
||||
|
@ -33,7 +33,7 @@ ErrorOr<std::unique_ptr<SymbolicFile>> SymbolicFile::createSymbolicFile(
|
||||
switch (Type) {
|
||||
case sys::fs::file_magic::bitcode:
|
||||
if (Context)
|
||||
return IRObjectFile::createIRObjectFile(Object, *Context);
|
||||
return IRObjectFile::create(Object, *Context);
|
||||
// Fallthrough
|
||||
case sys::fs::file_magic::unknown:
|
||||
case sys::fs::file_magic::archive:
|
||||
@ -69,7 +69,7 @@ ErrorOr<std::unique_ptr<SymbolicFile>> SymbolicFile::createSymbolicFile(
|
||||
if (!BCData)
|
||||
return std::move(Obj);
|
||||
|
||||
return IRObjectFile::createIRObjectFile(
|
||||
return IRObjectFile::create(
|
||||
MemoryBufferRef(BCData->getBuffer(), Object.getBufferIdentifier()),
|
||||
*Context);
|
||||
}
|
||||
|
@ -303,7 +303,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
|
||||
}
|
||||
|
||||
ErrorOr<std::unique_ptr<object::IRObjectFile>> ObjOrErr =
|
||||
object::IRObjectFile::createIRObjectFile(BufferRef, Context);
|
||||
object::IRObjectFile::create(BufferRef, Context);
|
||||
std::error_code EC = ObjOrErr.getError();
|
||||
if (EC == BitcodeError::InvalidBitcodeSignature ||
|
||||
EC == object::object_error::invalid_file_type ||
|
||||
@ -563,7 +563,7 @@ getModuleForFile(LLVMContext &Context, claimed_file &F, raw_fd_ostream *ApiFile,
|
||||
|
||||
MemoryBufferRef BufferRef(StringRef((const char *)View, File.filesize), "");
|
||||
ErrorOr<std::unique_ptr<object::IRObjectFile>> ObjOrErr =
|
||||
object::IRObjectFile::createIRObjectFile(BufferRef, Context);
|
||||
object::IRObjectFile::create(BufferRef, Context);
|
||||
|
||||
if (std::error_code EC = ObjOrErr.getError())
|
||||
message(LDPL_FATAL, "Could not read bitcode from file : %s",
|
||||
|
Loading…
Reference in New Issue
Block a user