summaryrefslogtreecommitdiff
path: root/include/llvm/IR/GVMaterializer.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-07 17:04:45 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-07 17:04:45 +0000
commit4d88db0d81989e7223164aa1fa1a2c7026747ee7 (patch)
tree621e309a71e043a6c6f9358da007a6ac6b63d4ad /include/llvm/IR/GVMaterializer.h
parent0f0974ddb98e233b908de43f144011166433e38a (diff)
downloadllvm-4d88db0d81989e7223164aa1fa1a2c7026747ee7.tar.gz
llvm-4d88db0d81989e7223164aa1fa1a2c7026747ee7.tar.bz2
llvm-4d88db0d81989e7223164aa1fa1a2c7026747ee7.tar.xz
Style update: don't duplicate the function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/IR/GVMaterializer.h')
-rw-r--r--include/llvm/IR/GVMaterializer.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/llvm/IR/GVMaterializer.h b/include/llvm/IR/GVMaterializer.h
index 6717bc83b5..dbe52bc2a3 100644
--- a/include/llvm/IR/GVMaterializer.h
+++ b/include/llvm/IR/GVMaterializer.h
@@ -33,26 +33,26 @@ protected:
public:
virtual ~GVMaterializer();
- /// isMaterializable - True if GV can be materialized from whatever backing
- /// store this GVMaterializer uses and has not been materialized yet.
+ /// True if GV can be materialized from whatever backing store this
+ /// GVMaterializer uses and has not been materialized yet.
virtual bool isMaterializable(const GlobalValue *GV) const = 0;
- /// isDematerializable - True if GV has been materialized and can be
- /// dematerialized back to whatever backing store this GVMaterializer uses.
+ /// True if GV has been materialized and can be dematerialized back to
+ /// whatever backing store this GVMaterializer uses.
virtual bool isDematerializable(const GlobalValue *GV) const = 0;
- /// Materialize - make sure the given GlobalValue is fully read.
+ /// Make sure the given GlobalValue is fully read.
///
virtual error_code Materialize(GlobalValue *GV) = 0;
- /// Dematerialize - If the given GlobalValue is read in, and if the
- /// GVMaterializer supports it, release the memory for the GV, and set it up
- /// to be materialized lazily. If the Materializer doesn't support this
- /// capability, this method is a noop.
+ /// If the given GlobalValue is read in, and if the GVMaterializer supports
+ /// it, release the memory for the GV, and set it up to be materialized
+ /// lazily. If the Materializer doesn't support this capability, this method
+ /// is a noop.
///
virtual void Dematerialize(GlobalValue *) {}
- /// MaterializeModule - make sure the entire Module has been completely read.
+ /// Make sure the entire Module has been completely read.
///
virtual error_code MaterializeModule(Module *M) = 0;
};