diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-21 09:25:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-21 09:25:43 +0000 |
commit | 0558e79840bfdbbd38c6e2b4f6765bf0158e85f4 (patch) | |
tree | 27e7ea0bea57cae00a0147643ec0fe7a8b70d346 /lib/CodeGen/CodeGenModule.h | |
parent | 570585c91dee98d7ba8ccf1198c03208ba17966b (diff) |
fix a crash that could occur when a variable declaration became a
function definition.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67446 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 60031ab648..47456804d3 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -184,7 +184,7 @@ public: /// GetAddrOfFunction - Return the address of the given function. If Ty is /// non-null, then this function will use the specified type if it has to /// create it. - llvm::Function *GetAddrOfFunction(const FunctionDecl *D, + llvm::Constant *GetAddrOfFunction(const FunctionDecl *D, const llvm::Type *Ty = 0); /// GetStringForStringLiteral - Return the appropriate bytes for a string |