From 947365f73f4dc06e791c2ea5194dac40bfdb431c Mon Sep 17 00:00:00 2001 From: Chris Lattner <sabre@nondot.org> Date: Sun, 30 Aug 2009 17:44:10 +0000 Subject: [PATCH] hopefully unbreak the build by making this-> explicit for dependent base class lookup. llvm-svn: 80499 --- llvm/include/llvm/Support/IRBuilder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Support/IRBuilder.h b/llvm/include/llvm/Support/IRBuilder.h index ee2d4ed051b2..4080f9020621 100644 --- a/llvm/include/llvm/Support/IRBuilder.h +++ b/llvm/include/llvm/Support/IRBuilder.h @@ -130,7 +130,7 @@ public: /// 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; }