diff options
author | Alexey Lapshin <a.v.lapshin@mail.ru> | 2022-12-25 15:25:18 +0100 |
---|---|---|
committer | Alexey Lapshin <a.v.lapshin@mail.ru> | 2022-12-25 15:26:35 +0100 |
commit | 3284adf67170f5b3d79f0beb91a4248f8c45bef3 (patch) | |
tree | 07a50239f13dd2d8d0f7f1981d304efd1727e16a /llvm/lib/IR/Value.cpp | |
parent | 012afbbab48194b07ac46cf95e5684d2df57db47 (diff) | |
download | llvm-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.cpp | 2 |
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; } |