diff options
author | Steve Naroff <snaroff@apple.com> | 2008-02-12 01:09:36 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-02-12 01:09:36 +0000 |
commit | fabbc34f75960574514225de737f9985ae577112 (patch) | |
tree | 0a4c9095a2bc0bfbc0309d182b975527547f2ce7 | |
parent | 5f8aa696619e32bf307232841fedb704ba733b4d (diff) |
Fix unsafe static cast...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46980 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Sema/SemaDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sema/SemaDecl.cpp b/Sema/SemaDecl.cpp index aba5b42192..b14e20b2c3 100644 --- a/Sema/SemaDecl.cpp +++ b/Sema/SemaDecl.cpp @@ -1052,8 +1052,8 @@ Sema::DeclTy *Sema::ActOnStartOfFunctionDef(Scope *FnBodyScope, Declarator &D) { Diag(FD->getLocation(), diag::err_previous_definition); } } - FunctionDecl *FD = - static_cast<FunctionDecl*>(ActOnDeclarator(GlobalScope, D, 0)); + Decl *decl = static_cast<Decl*>(ActOnDeclarator(GlobalScope, D, 0)); + FunctionDecl *FD = dyn_cast<FunctionDecl>(decl); assert(FD != 0 && "ActOnDeclarator() didn't return a FunctionDecl"); CurFunctionDecl = FD; |