mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
Fix a problem noticed by gcc-4.4:
warning: comparison is always true due to limited range of data type. llvm-svn: 79642
This commit is contained in:
parent
d240c19451
commit
faf85e8111
@ -88,7 +88,7 @@ std::string PIC16TargetObjectFile::getNameForFunctFrame(const Function *F,
|
||||
if (F->hasSection()) {
|
||||
std::string Sectn = F->getSection();
|
||||
std::string StrToFind = "Overlay=";
|
||||
unsigned Pos = Sectn.find(StrToFind);
|
||||
size_t Pos = Sectn.find(StrToFind);
|
||||
if (Pos != std::string::npos) {
|
||||
Pos += StrToFind.length();
|
||||
std::string Color = "";
|
||||
|
Loading…
Reference in New Issue
Block a user