diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2010-04-19 18:15:02 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-04-19 18:15:02 +0000 |
| commit | 4d55b2d049760b9f81d3dc4af6a751537fc0e666 (patch) | |
| tree | a1895b5706c05686141ebc32cff89ea185542252 /clang/lib/CodeGen/CodeGenModule.h | |
| parent | e6a9912a76caaa3f21d732fbdd53788f61d8ad29 (diff) | |
| download | bcm5719-llvm-4d55b2d049760b9f81d3dc4af6a751537fc0e666.tar.gz bcm5719-llvm-4d55b2d049760b9f81d3dc4af6a751537fc0e666.zip | |
Some renaming of methods, fixes typo
(related to PR6769).
llvm-svn: 101794
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
| -rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 022360bfc52..8bfa0b9ab79 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/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; } |

