diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-30 17:44:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-30 17:44:10 +0000 |
commit | 947365f73f4dc06e791c2ea5194dac40bfdb431c (patch) | |
tree | 33b5f13da5fadb1ab1edf44bff60cb2fae7ed838 | |
parent | eab572a8ff798d57395a29ca8824b9f92cdedd2f (diff) | |
download | bcm5719-llvm-947365f73f4dc06e791c2ea5194dac40bfdb431c.tar.gz bcm5719-llvm-947365f73f4dc06e791c2ea5194dac40bfdb431c.zip |
hopefully unbreak the build by making this-> explicit for dependent
base class lookup.
llvm-svn: 80499
-rw-r--r-- | llvm/include/llvm/Support/IRBuilder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/IRBuilder.h b/llvm/include/llvm/Support/IRBuilder.h index ee2d4ed051b..4080f902062 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; } |