diff options
| author | Eric Christopher <echristo@gmail.com> | 2015-05-15 18:20:14 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2015-05-15 18:20:14 +0000 |
| commit | 97cb56572a18850f6551843b617d047ef6116f03 (patch) | |
| tree | 5e43d7963c4a55ab902a18e9856fe4e7eccb2b41 /llvm/lib/Linker | |
| parent | d9f1a78aa07e425675661e87b7b9e7f9f4a8ce65 (diff) | |
| download | bcm5719-llvm-97cb56572a18850f6551843b617d047ef6116f03.tar.gz bcm5719-llvm-97cb56572a18850f6551843b617d047ef6116f03.zip | |
While in GlobalValue fix the function(s) that don't follow the
naming convention and update users.
llvm-svn: 237461
Diffstat (limited to 'llvm/lib/Linker')
| -rw-r--r-- | llvm/lib/Linker/LinkModules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Linker/LinkModules.cpp b/llvm/lib/Linker/LinkModules.cpp index 27b7ffd795a..1b7a33168f1 100644 --- a/llvm/lib/Linker/LinkModules.cpp +++ b/llvm/lib/Linker/LinkModules.cpp @@ -1227,7 +1227,7 @@ bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) { for (Argument &Arg : Src.args()) ValueMap.erase(&Arg); - Src.Dematerialize(); + Src.dematerialize(); return false; } |

