aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Value.cpp
diff options
context:
space:
mode:
authorAlexey Lapshin <a.v.lapshin@mail.ru>2022-12-25 15:25:18 +0100
committerAlexey Lapshin <a.v.lapshin@mail.ru>2022-12-25 15:26:35 +0100
commit3284adf67170f5b3d79f0beb91a4248f8c45bef3 (patch)
tree07a50239f13dd2d8d0f7f1981d304efd1727e16a /llvm/lib/IR/Value.cpp
parent012afbbab48194b07ac46cf95e5684d2df57db47 (diff)
downloadllvm-3284adf67170f5b3d79f0beb91a4248f8c45bef3.zip
llvm-3284adf67170f5b3d79f0beb91a4248f8c45bef3.tar.gz
llvm-3284adf67170f5b3d79f0beb91a4248f8c45bef3.tar.bz2
[NFC][ADT] Rename StringMapEntry *Create() into StringMapEntry *create.
Diffstat (limited to 'llvm/lib/IR/Value.cpp')
-rw-r--r--llvm/lib/IR/Value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Value.cpp b/llvm/lib/IR/Value.cpp
index 4faf1ab..6dc7af9 100644
--- a/llvm/lib/IR/Value.cpp
+++ b/llvm/lib/IR/Value.cpp
@@ -352,7 +352,7 @@ void Value::setNameImpl(const Twine &NewName) {
// Create the new name.
MallocAllocator Allocator;
- setValueName(ValueName::Create(NameRef, Allocator));
+ setValueName(ValueName::create(NameRef, Allocator));
getValueName()->setValue(this);
return;
}