[llvm-commits] [llvm] r80499 - /llvm/trunk/include/llvm/Support/IRBuilder.h

Chris Lattner sabre at nondot.org
Sun Aug 30 10:44:11 PDT 2009


Author: lattner
Date: Sun Aug 30 12:44:10 2009
New Revision: 80499

URL: http://llvm.org/viewvc/llvm-project?rev=80499&view=rev
Log:
hopefully unbreak the build by making this-> explicit for dependent
base class lookup.

Modified:
    llvm/trunk/include/llvm/Support/IRBuilder.h

Modified: llvm/trunk/include/llvm/Support/IRBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/IRBuilder.h?rev=80499&r1=80498&r2=80499&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/IRBuilder.h (original)
+++ llvm/trunk/include/llvm/Support/IRBuilder.h Sun Aug 30 12:44:10 2009
@@ -130,7 +130,7 @@
   /// Insert - Insert and return the specified instruction.
   template<typename InstTy>
   InstTy *Insert(InstTy *I, const Twine &Name = "") const {
-    InsertHelper(I, Name, BB, InsertPt);
+    this->InsertHelper(I, Name, BB, InsertPt);
     return I;
   }
 





More information about the llvm-commits mailing list