diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-13 07:32:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-13 07:32:11 +0000 |
commit | 61705c1a6e1d768a5a618c98a57a7c8e00407e5a (patch) | |
tree | 9356b441ff5600a8e0abf8d43594266417596e19 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 4d232bccca6ffbe21dfa503ace932d80cf19e422 (diff) | |
download | bcm5719-llvm-61705c1a6e1d768a5a618c98a57a7c8e00407e5a.tar.gz bcm5719-llvm-61705c1a6e1d768a5a618c98a57a7c8e00407e5a.zip |
update to follow mainline llvm API change.
llvm-svn: 49607
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 61a0d744f60..df2c8b2331c 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -17,7 +17,7 @@ #include "clang/AST/Type.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" -#include "llvm/Support/LLVMBuilder.h" +#include "llvm/Support/IRBuilder.h" #include <vector> namespace llvm { @@ -244,7 +244,7 @@ public: TargetInfo &Target; typedef std::pair<llvm::Value *, llvm::Value *> ComplexPairTy; - llvm::LLVMFoldingBuilder Builder; + llvm::IRBuilder Builder; // Holds the Decl for the current function or method const Decl *CurFuncDecl; |