diff options
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index d9e2820e8ef..a6caa379cc9 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -488,6 +488,12 @@ public: bool DestIsVolatile); /// LoadComplexFromAddr - Load a complex number from the specified address. ComplexPairTy LoadComplexFromAddr(llvm::Value *SrcAddr, bool SrcIsVolatile); + + /// GenerateStaticBlockVarDecl - return the the static + /// declaration of local variable. + llvm::GlobalValue *GenerateStaticBlockVarDecl(const VarDecl &D, + bool NoInit, + const char *Separator); }; } // end namespace CodeGen } // end namespace clang |