Make CurFuncDecl more specific; I have some code I'm going to land in a

bit that wants to use CurFuncDecl as a FunctionDecl.

llvm-svn: 51402
This commit is contained in:
Eli Friedman 2008-05-22 01:16:59 +00:00
parent f12c08dcd8
commit e53d15386f
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ public:
llvm::IRBuilder Builder;
// Holds the Decl for the current function or method
const Decl *CurFuncDecl;
const FunctionDecl *CurFuncDecl;
QualType FnRetTy;
llvm::Function *CurFn;