diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:08:18 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 11:08:18 +0000 |
commit | 820a908df742d3cc83ba3189492008cd0b8c2bc1 (patch) | |
tree | 984b47260fc4c8b18c5e5c451b54d24780449ecc /llvm/unittests/IR/PatternMatch.cpp | |
parent | c80ceea90b243f67b7b07d6a7e03e787fb0f8bf6 (diff) | |
download | bcm5719-llvm-820a908df742d3cc83ba3189492008cd0b8c2bc1.tar.gz bcm5719-llvm-820a908df742d3cc83ba3189492008cd0b8c2bc1.zip |
[Modules] Move the LLVM IR pattern match header into the IR library, it
obviously is coupled to the IR.
llvm-svn: 202818
Diffstat (limited to 'llvm/unittests/IR/PatternMatch.cpp')
-rw-r--r-- | llvm/unittests/IR/PatternMatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/PatternMatch.cpp b/llvm/unittests/IR/PatternMatch.cpp index 985135d2db0..655a3d5340a 100644 --- a/llvm/unittests/IR/PatternMatch.cpp +++ b/llvm/unittests/IR/PatternMatch.cpp @@ -20,9 +20,9 @@ #include "llvm/IR/MDBuilder.h" #include "llvm/IR/Module.h" #include "llvm/IR/Operator.h" +#include "llvm/IR/PatternMatch.h" #include "llvm/IR/Type.h" #include "llvm/Support/NoFolder.h" -#include "llvm/Support/PatternMatch.h" #include "gtest/gtest.h" using namespace llvm; |