aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-extract/llvm-extract.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2024-05-08 10:33:53 -0700
committerGitHub <noreply@github.com>2024-05-08 10:33:53 -0700
commitbb6df0804ba0a0b0581aec4156138f5144dbcee2 (patch)
tree9f1bf9618fd27b9941c88b59f5790dc9049eda7f /llvm/tools/llvm-extract/llvm-extract.cpp
parent46435ac19e09039fb146fa6c12da0e640a66d435 (diff)
downloadllvm-bb6df0804ba0a0b0581aec4156138f5144dbcee2.zip
llvm-bb6df0804ba0a0b0581aec4156138f5144dbcee2.tar.gz
llvm-bb6df0804ba0a0b0581aec4156138f5144dbcee2.tar.bz2
[llvm] Use StringRef::operator== instead of StringRef::equals (NFC) (#91441)
I'm planning to remove StringRef::equals in favor of StringRef::operator==. - StringRef::operator==/!= outnumber StringRef::equals by a factor of 70 under llvm/ in terms of their usage. - The elimination of StringRef::equals brings StringRef closer to std::string_view, which has operator== but not equals. - S == "foo" is more readable than S.equals("foo"), especially for !Long.Expression.equals("str") vs Long.Expression != "str".
Diffstat (limited to 'llvm/tools/llvm-extract/llvm-extract.cpp')
-rw-r--r--llvm/tools/llvm-extract/llvm-extract.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-extract/llvm-extract.cpp b/llvm/tools/llvm-extract/llvm-extract.cpp
index a879c203..5915f92 100644
--- a/llvm/tools/llvm-extract/llvm-extract.cpp
+++ b/llvm/tools/llvm-extract/llvm-extract.cpp
@@ -357,7 +357,7 @@ int main(int argc, char **argv) {
// The function has been materialized, so add its matching basic blocks
// to the block extractor list, or fail if a name is not found.
auto Res = llvm::find_if(*P.first, [&](const BasicBlock &BB) {
- return BB.getName().equals(BBName);
+ return BB.getName() == BBName;
});
if (Res == P.first->end()) {
errs() << argv[0] << ": function " << P.first->getName()