diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-13 21:18:01 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-13 21:18:01 +0000 |
commit | 73241dfeb5c498255b662984cca369fd28ec3147 (patch) | |
tree | ff7b7b38d435c9c964beb6d28f84d7d468925575 /lib/CodeGen/CodeGenModule.h | |
parent | 0269871c9cba493f76237175ab60313406f3bafa (diff) |
Pull MayDeferGeneration out of EmitGlobal.
- Fix emission of static functions with constructor attribute while I
was here.
<rdar://problem/6140899> [codegen] "static" and attribute-constructor interact poorly
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 1d10f9d1e3..967889a92d 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -324,6 +324,11 @@ private: void EmitLLVMUsed(void); void BindRuntimeFunctions(); + + /// MayDeferGeneration - Determine if the given decl can be emitted + /// lazily; this is only relevant for definitions. The given decl + /// must be either a function or var decl. + bool MayDeferGeneration(const ValueDecl *D); }; } // end namespace CodeGen } // end namespace clang |