diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:18:19 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:18:19 +0000 |
commit | 61743af166a9c24d7348f433153634d6ca8c8391 (patch) | |
tree | 9cb4e3fb8bbbcc372786897a44f01cce1d20ce0b | |
parent | 4220e9c154a6426d247b658f76d498c66195f92e (diff) | |
download | bcm5719-llvm-61743af166a9c24d7348f433153634d6ca8c8391.tar.gz bcm5719-llvm-61743af166a9c24d7348f433153634d6ca8c8391.zip |
[Modules] Update to reflect ValueHandle moving to the IR library in LLVM
r202821.
llvm-svn: 202822
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.h | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 2 | ||||
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.h b/clang/lib/CodeGen/CGDebugInfo.h index 56fc9754d7a..166fc6c5b63 100644 --- a/clang/lib/CodeGen/CGDebugInfo.h +++ b/clang/lib/CodeGen/CGDebugInfo.h @@ -22,8 +22,8 @@ #include "llvm/ADT/DenseMap.h" #include "llvm/DIBuilder.h" #include "llvm/DebugInfo.h" +#include "llvm/IR/ValueHandle.h" #include "llvm/Support/Allocator.h" -#include "llvm/Support/ValueHandle.h" namespace llvm { class MDNode; diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 3f652082fe2..bbc4fae9928 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -31,8 +31,8 @@ #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/IR/ValueHandle.h" #include "llvm/Support/Debug.h" -#include "llvm/Support/ValueHandle.h" namespace llvm { class BasicBlock; diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 9c20d8e605e..151cb33d67c 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -30,7 +30,7 @@ #include "llvm/ADT/StringMap.h" #include "llvm/IR/CallingConv.h" #include "llvm/IR/Module.h" -#include "llvm/Support/ValueHandle.h" +#include "llvm/IR/ValueHandle.h" #include "llvm/Transforms/Utils/SpecialCaseList.h" namespace llvm { |