[llvm-branch-commits] [llvm-branch] r99523 - /llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h

Gabor Greif ggreif at gmail.com
Thu Mar 25 10:14:01 PDT 2010


Author: ggreif
Date: Thu Mar 25 12:14:00 2010
New Revision: 99523

URL: http://llvm.org/viewvc/llvm-project?rev=99523&view=rev
Log:
a word of warning (this is temporary)

Modified:
    llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h

Modified: llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h?rev=99523&r1=99522&r2=99523&view=diff
==============================================================================
--- llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h (original)
+++ llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h Thu Mar 25 12:14:00 2010
@@ -158,6 +158,9 @@
   }
 
   IterTy getCallee() const {
+      // FIXME: this is slow, since we do not have the fast versions
+      // of the op_*() functions here. See CallSite::getCallee.
+      //
     if (isCall())
       return getInstruction()->op_begin(); // Unchanged (ATM)
     else





More information about the llvm-branch-commits mailing list