mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Squelch compilation warnings on Sparc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16301 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
27bdcd8b57
commit
a6bcd83854
@ -151,7 +151,7 @@ static inline bool LoadLibrary(const std::string &FN, Module*& Result) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Filename.readable() && Filename.is_bytecode_file()) {
|
if (Filename.readable() && Filename.is_bytecode_file()) {
|
||||||
if (Result = GetModule(Filename))
|
if ((Result = GetModule(Filename)))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -161,7 +161,7 @@ static inline bool LoadLibrary(const std::string &FN, Module*& Result) {
|
|||||||
sys::Path path = GetPathForLinkageItem(FN,LibPaths[I]);
|
sys::Path path = GetPathForLinkageItem(FN,LibPaths[I]);
|
||||||
if (!path.is_empty()) {
|
if (!path.is_empty()) {
|
||||||
if (path.is_bytecode_file()) {
|
if (path.is_bytecode_file()) {
|
||||||
if (Result = GetModule(path)) {
|
if ((Result = GetModule(path))) {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
// We found file but its not a valid bytecode file so we
|
// We found file but its not a valid bytecode file so we
|
||||||
|
Loading…
x
Reference in New Issue
Block a user