diff options
Diffstat (limited to 'include/llvm/Module.h')
-rw-r--r-- | include/llvm/Module.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index abb91e0f01..60032474ca 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -18,7 +18,7 @@ class Method; class GlobalVariable; class GlobalValueRefMap; // Used by ConstPoolVals.cpp -class ConstPoolPointerReference; +class ConstPoolPointerRef; class Module : public Value, public SymTabValue { public: @@ -44,10 +44,10 @@ private: GlobalValueRefMap *GVRefMap; // Accessor for the underlying GlobalValRefMap... only through the - // ConstPoolPointerReference class... - friend class ConstPoolPointerReference; - void mutateConstPoolPointerReference(GlobalValue *OldGV, GlobalValue *NewGV); - ConstPoolPointerReference *getConstPoolPointerReference(GlobalValue *GV); + // ConstPoolPointerRef class... + friend class ConstPoolPointerRef; + void mutateConstPoolPointerRef(GlobalValue *OldGV, GlobalValue *NewGV); + ConstPoolPointerRef *getConstPoolPointerRef(GlobalValue *GV); public: Module(); |