summaryrefslogtreecommitdiff
path: root/lib/Transforms/InstCombine/InstCombineSelect.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 11:08:18 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 11:08:18 +0000
commitdf3d8e8b4dabcf0437a78a001f91208d264c2387 (patch)
tree685ca3e02cf6a311734dce4776a6cfd9f33f37e0 /lib/Transforms/InstCombine/InstCombineSelect.cpp
parent4bbfbdf7d7a3c4dbdd2d7bb190ef8a0a8246c218 (diff)
downloadllvm-df3d8e8b4dabcf0437a78a001f91208d264c2387.tar.gz
llvm-df3d8e8b4dabcf0437a78a001f91208d264c2387.tar.bz2
llvm-df3d8e8b4dabcf0437a78a001f91208d264c2387.tar.xz
[Modules] Move the LLVM IR pattern match header into the IR library, it
obviously is coupled to the IR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/InstCombine/InstCombineSelect.cpp')
-rw-r--r--lib/Transforms/InstCombine/InstCombineSelect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/InstCombine/InstCombineSelect.cpp b/lib/Transforms/InstCombine/InstCombineSelect.cpp
index e0609bb264..e74d912216 100644
--- a/lib/Transforms/InstCombine/InstCombineSelect.cpp
+++ b/lib/Transforms/InstCombine/InstCombineSelect.cpp
@@ -14,7 +14,7 @@
#include "InstCombine.h"
#include "llvm/Analysis/ConstantFolding.h"
#include "llvm/Analysis/InstructionSimplify.h"
-#include "llvm/Support/PatternMatch.h"
+#include "llvm/IR/PatternMatch.h"
using namespace llvm;
using namespace PatternMatch;