objc methods can't be an operand to callexpr.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76179 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp
index 320a4f1..5473978 100644
--- a/lib/AST/Expr.cpp
+++ b/lib/AST/Expr.cpp
@@ -226,10 +226,8 @@
 
 FunctionDecl *CallExpr::getDirectCallee() {
   Expr *CEE = getCallee()->IgnoreParenCasts();
-  if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
-    // FIXME: We can follow objective-c methods and C++ member functions...
+  if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE))
     return dyn_cast<FunctionDecl>(DRE->getDecl());
-  }
 
   return 0;
 }