mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Use StringRef::startswith to do some string comparisons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143982 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c545322c27
commit
2ea402541f
@ -525,20 +525,17 @@ CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) {
|
||||
}
|
||||
|
||||
static bool isObjCClass(StringRef Name) {
|
||||
if (Name == "") return false;
|
||||
return Name[0] == '+' || Name[0] == '-';
|
||||
return Name.startswith("+") || Name.startswith("-");
|
||||
}
|
||||
|
||||
static bool hasObjCCategory(StringRef Name) {
|
||||
if (Name[0] != '+' && Name[0] != '-')
|
||||
return false;
|
||||
if (!isObjCClass(Name)) return false;
|
||||
|
||||
size_t pos = Name.find(')');
|
||||
if (pos != std::string::npos) {
|
||||
if (Name[pos+1] != ' ') return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user