diff options
author | Fangrui Song <maskray@google.com> | 2019-04-19 08:03:20 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-04-19 08:03:20 +0000 |
commit | 7137b54a03479ddef1d45314961bffff631453d3 (patch) | |
tree | a36173c2b511399a42c01d9fe61e362c38dabe1a /llvm/lib/Transforms/IPO/MergeFunctions.cpp | |
parent | 884f557bb216030769d40c00f55977e262b761a4 (diff) | |
download | bcm5719-llvm-7137b54a03479ddef1d45314961bffff631453d3.tar.gz bcm5719-llvm-7137b54a03479ddef1d45314961bffff631453d3.zip |
[MergeFunc] Delete unused FunctionNode::release()
llvm-svn: 358742
Diffstat (limited to 'llvm/lib/Transforms/IPO/MergeFunctions.cpp')
-rw-r--r-- | llvm/lib/Transforms/IPO/MergeFunctions.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/MergeFunctions.cpp b/llvm/lib/Transforms/IPO/MergeFunctions.cpp index 9b3bf850528..08a6c4e9963 100644 --- a/llvm/lib/Transforms/IPO/MergeFunctions.cpp +++ b/llvm/lib/Transforms/IPO/MergeFunctions.cpp @@ -189,8 +189,6 @@ public: void replaceBy(Function *G) const { F = G; } - - void release() { F = nullptr; } }; /// MergeFunctions finds functions which will generate identical machine code, |