aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
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
commit8ba22dd113839d66b3f2912aff6bdd27776b1608 (patch)
tree13d8515137796ccfdd85b4ea2f272d5e2a027a05 /include/llvm/Support
parent243874430bb02c8f76b7603cbc8f31ebf2749785 (diff)
downloadexternal_llvm-8ba22dd113839d66b3f2912aff6bdd27776b1608.zip
external_llvm-8ba22dd113839d66b3f2912aff6bdd27776b1608.tar.gz
external_llvm-8ba22dd113839d66b3f2912aff6bdd27776b1608.tar.bz2
hopefully unbreak the build by making this-> explicit for dependent
base class lookup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80499 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/IRBuilder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h
index ee2d4ed..4080f90 100644
--- a/include/llvm/Support/IRBuilder.h
+++ b/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;
}