summaryrefslogtreecommitdiff
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 11:17:44 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 11:17:44 +0000
commiteb3d76da81e2148ed7c577594c873ba147f4f435 (patch)
treebcfe1da7d3cafd8e4fba57297cd7360fafc72e95 /lib/AsmParser
parentdf3d8e8b4dabcf0437a78a001f91208d264c2387 (diff)
downloadllvm-eb3d76da81e2148ed7c577594c873ba147f4f435.tar.gz
llvm-eb3d76da81e2148ed7c577594c873ba147f4f435.tar.bz2
llvm-eb3d76da81e2148ed7c577594c873ba147f4f435.tar.xz
[Modules] Move ValueHandle into the IR library where Value itself lives.
Move the test for this class into the IR unittests as well. This uncovers that ValueMap too is in the IR library. Ironically, the unittest for ValueMap is useless in the Support library (honestly, so was the ValueHandle test) and so it already lives in the IR unittests. Mmmm, tasty layering. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-rw-r--r--lib/AsmParser/LLParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.h b/lib/AsmParser/LLParser.h
index d25374ff05..790ffd2c71 100644
--- a/lib/AsmParser/LLParser.h
+++ b/lib/AsmParser/LLParser.h
@@ -22,7 +22,7 @@
#include "llvm/IR/Module.h"
#include "llvm/IR/Operator.h"
#include "llvm/IR/Type.h"
-#include "llvm/Support/ValueHandle.h"
+#include "llvm/IR/ValueHandle.h"
#include <map>
namespace llvm {