aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Module.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2015-05-15 18:20:14 +0000
committerEric Christopher <echristo@gmail.com>2015-05-15 18:20:14 +0000
commit97cb56572a18850f6551843b617d047ef6116f03 (patch)
tree5e43d7963c4a55ab902a18e9856fe4e7eccb2b41 /llvm/lib/IR/Module.cpp
parentd9f1a78aa07e425675661e87b7b9e7f9f4a8ce65 (diff)
downloadllvm-97cb56572a18850f6551843b617d047ef6116f03.zip
llvm-97cb56572a18850f6551843b617d047ef6116f03.tar.gz
llvm-97cb56572a18850f6551843b617d047ef6116f03.tar.bz2
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/IR/Module.cpp')
-rw-r--r--llvm/lib/IR/Module.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/IR/Module.cpp b/llvm/lib/IR/Module.cpp
index 3e8f91f..043f74e 100644
--- a/llvm/lib/IR/Module.cpp
+++ b/llvm/lib/IR/Module.cpp
@@ -394,15 +394,15 @@ std::error_code Module::materialize(GlobalValue *GV) {
return Materializer->materialize(GV);
}
-void Module::Dematerialize(GlobalValue *GV) {
+void Module::dematerialize(GlobalValue *GV) {
if (Materializer)
- return Materializer->Dematerialize(GV);
+ return Materializer->dematerialize(GV);
}
std::error_code Module::materializeAll() {
if (!Materializer)
return std::error_code();
- return Materializer->MaterializeModule(this);
+ return Materializer->materializeModule(this);
}
std::error_code Module::materializeAllPermanently() {