mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-14 00:14:19 +00:00
Fix prefix comparison from r212308
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212310 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1baa5d8ea2
commit
e6b44070cf
@ -70,7 +70,8 @@ bool LTOModule::isBitcodeFile(const char *path) {
|
||||
|
||||
bool LTOModule::isBitcodeForTarget(MemoryBuffer *buffer,
|
||||
StringRef triplePrefix) {
|
||||
return getBitcodeTargetTriple(buffer, getGlobalContext()) == triplePrefix;
|
||||
std::string Triple = getBitcodeTargetTriple(buffer, getGlobalContext());
|
||||
return StringRef(Triple).startswith(triplePrefix);
|
||||
}
|
||||
|
||||
LTOModule *LTOModule::createFromFile(const char *path, TargetOptions options,
|
||||
|
Loading…
x
Reference in New Issue
Block a user