diff options
author | Chris Lattner <sabre@nondot.org> | 2008-08-08 19:57:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-08-08 19:57:58 +0000 |
commit | 85e356825b291f86c6e926638914222b834b71a3 (patch) | |
tree | 958d5a5aa0951fa70c8c59c3f217805bad102153 /lib/CodeGen/CGExprComplex.cpp | |
parent | ff9eb1fe0a16a34c355db0d1bc4a9d0f7a276c73 (diff) |
update to make IRBuilder API change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprComplex.cpp')
-rw-r--r-- | lib/CodeGen/CGExprComplex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprComplex.cpp b/lib/CodeGen/CGExprComplex.cpp index 2ea0a48a75..0a03adfcf7 100644 --- a/lib/CodeGen/CGExprComplex.cpp +++ b/lib/CodeGen/CGExprComplex.cpp @@ -31,7 +31,7 @@ namespace { class VISIBILITY_HIDDEN ComplexExprEmitter : public StmtVisitor<ComplexExprEmitter, ComplexPairTy> { CodeGenFunction &CGF; - llvm::IRBuilder &Builder; + llvm::IRBuilder<> &Builder; public: ComplexExprEmitter(CodeGenFunction &cgf) : CGF(cgf), Builder(CGF.Builder) { } |