[llvm-commits] [poolalloc] r166930 - /poolalloc/trunk/lib/DSA/Local.cpp

John Criswell criswell at uiuc.edu
Mon Oct 29 08:29:07 PDT 2012


Author: criswell
Date: Mon Oct 29 10:29:07 2012
New Revision: 166930

URL: http://llvm.org/viewvc/llvm-project?rev=166930&view=rev
Log:
Renamed visitVAStartInst() to visitVAStart() since the InstVisitor class now
has a visitVAStartInst() method.

Modified:
    poolalloc/trunk/lib/DSA/Local.cpp

Modified: poolalloc/trunk/lib/DSA/Local.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/Local.cpp?rev=166930&r1=166929&r2=166930&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/Local.cpp (original)
+++ poolalloc/trunk/lib/DSA/Local.cpp Mon Oct 29 10:29:07 2012
@@ -138,7 +138,7 @@
 
     bool visitIntrinsic(CallSite CS, Function* F);
     void visitCallSite(CallSite CS);
-    void visitVAStartInst(CallSite CS);
+    void visitVAStart(CallSite CS);
     void visitVAStartNode(DSNode* N);
 
   public:
@@ -847,7 +847,7 @@
   visitCallSite(&II);
 }
 
-void GraphBuilder::visitVAStartInst(CallSite CS) {
+void GraphBuilder::visitVAStart(CallSite CS) {
   // Build out DSNodes for the va_list depending on the target arch
   // And assosiate the right node with the VANode for this function
   // so it can be merged with the right arguments from callsites
@@ -943,7 +943,7 @@
 
   switch (F->getIntrinsicID()) {
   case Intrinsic::vastart: {
-    visitVAStartInst(CS);
+    visitVAStart(CS);
     return true;
   }
   case Intrinsic::vacopy: {





More information about the llvm-commits mailing list