diff options
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 022360bfc5..8bfa0b9ab7 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -171,10 +171,10 @@ public: /// been configured. bool hasObjCRuntime() { return !!Runtime; } - llvm::Value *getStaticLocalDeclMap(const VarDecl *VD) { + llvm::Value *getStaticLocalDeclAddress(const VarDecl *VD) { return StaticLocalDeclMap[VD]; } - void setStaticLocalDeclMap(const VarDecl *D, + void setStaticLocalDeclAddress(const VarDecl *D, llvm::GlobalVariable *GV) { StaticLocalDeclMap[D] = GV; } |