summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-30 17:44:10 +0000
committerChris Lattner <sabre@nondot.org>2009-08-30 17:44:10 +0000
commit947365f73f4dc06e791c2ea5194dac40bfdb431c (patch)
tree33b5f13da5fadb1ab1edf44bff60cb2fae7ed838
parenteab572a8ff798d57395a29ca8824b9f92cdedd2f (diff)
downloadbcm5719-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.h2
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;
}
OpenPOWER on IntegriCloud