Use FunTy instead of hard-coding Function.

llvm-svn: 101283
This commit is contained in:
Dan Gohman 2010-04-14 20:49:44 +00:00
parent c05b887c84
commit 33c46fde07
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ public:
/// getCaller - Return the caller function for this call site /// getCaller - Return the caller function for this call site
/// ///
Function *getCaller() const { return (*this)->getParent()->getParent(); } FunTy *getCaller() const { return (*this)->getParent()->getParent(); }
private: private:
/// Returns the operand number of the first argument /// Returns the operand number of the first argument