mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Use StringRef which performs the "early exit" when compared against a constant
string. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113615 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4bafda9618
commit
f9e49e86ee
@ -366,12 +366,7 @@ bool llvm::UpgradeIntrinsicFunction(Function *F, Function *&NewFn) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool llvm::UpgradeGlobalVariable(GlobalVariable *GV) {
|
bool llvm::UpgradeGlobalVariable(GlobalVariable *GV) {
|
||||||
const std::string &Name = GV->getName();
|
StringRef Name(GV->getName());
|
||||||
|
|
||||||
// Early exit with simple tests.
|
|
||||||
if (Name.length() != 24 || Name[0] != '.' || Name[1] != 'l' ||
|
|
||||||
Name[3] != 'l' || Name[4] != 'v' || Name[5] != 'm' || Name[6] != '.')
|
|
||||||
return false;
|
|
||||||
|
|
||||||
// We are only upgrading one symbol here.
|
// We are only upgrading one symbol here.
|
||||||
if (Name == ".llvm.eh.catch.all.value") {
|
if (Name == ".llvm.eh.catch.all.value") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user