diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-12 20:48:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-12 20:48:11 +0000 |
commit | 6b7b91ab038eb468431725993dfe246726bc9743 (patch) | |
tree | 74785b2b3c4c55cf31caf92889bf13d3ce8a5f4a /lib | |
parent | 302753863d4f4989930ed508892225eb43509d94 (diff) | |
download | external_llvm-6b7b91ab038eb468431725993dfe246726bc9743.zip external_llvm-6b7b91ab038eb468431725993dfe246726bc9743.tar.gz external_llvm-6b7b91ab038eb468431725993dfe246726bc9743.tar.bz2 |
Move ConstantHandling.h into lib/VMCore and out of include/llvm
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/ConstantFold.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/ConstantFold.h | 4 | ||||
-rw-r--r-- | lib/VMCore/ConstantFolding.h | 4 | ||||
-rw-r--r-- | lib/VMCore/Constants.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/VMCore/ConstantFold.cpp b/lib/VMCore/ConstantFold.cpp index 2ae554e..45b021b 100644 --- a/lib/VMCore/ConstantFold.cpp +++ b/lib/VMCore/ConstantFold.cpp @@ -11,7 +11,7 @@ // //===----------------------------------------------------------------------===// -#include "llvm/ConstantHandling.h" +#include "ConstantHandling.h" #include "llvm/iPHINode.h" #include "llvm/InstrTypes.h" #include "llvm/DerivedTypes.h" diff --git a/lib/VMCore/ConstantFold.h b/lib/VMCore/ConstantFold.h index 8d29336..8475e44 100644 --- a/lib/VMCore/ConstantFold.h +++ b/lib/VMCore/ConstantFold.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_CONSTANTHANDLING_H -#define LLVM_CONSTANTHANDLING_H +#ifndef CONSTANTHANDLING_H +#define CONSTANTHANDLING_H #include "llvm/Constants.h" #include "llvm/Type.h" diff --git a/lib/VMCore/ConstantFolding.h b/lib/VMCore/ConstantFolding.h index 8d29336..8475e44 100644 --- a/lib/VMCore/ConstantFolding.h +++ b/lib/VMCore/ConstantFolding.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_CONSTANTHANDLING_H -#define LLVM_CONSTANTHANDLING_H +#ifndef CONSTANTHANDLING_H +#define CONSTANTHANDLING_H #include "llvm/Constants.h" #include "llvm/Type.h" diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index c1aa39d..35681c0 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -12,7 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Constants.h" -#include "llvm/ConstantHandling.h" +#include "ConstantHandling.h" #include "llvm/DerivedTypes.h" #include "llvm/iMemory.h" #include "llvm/SymbolTable.h" |