summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 12:05:47 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 12:05:47 +0000
commitff956e7568a4d88762cd038497d97498c680e70c (patch)
tree16c3e932841c78efd01a8bcbc4fc0d027a8367b4 /unittests
parent9234e060659bec52046187e4123ceb784264036c (diff)
downloadllvm-ff956e7568a4d88762cd038497d97498c680e70c.tar.gz
llvm-ff956e7568a4d88762cd038497d97498c680e70c.tar.bz2
llvm-ff956e7568a4d88762cd038497d97498c680e70c.tar.xz
[Modules] Move the NoFolder into the IR library as it creates
instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/IR/IRBuilderTest.cpp2
-rw-r--r--unittests/IR/PatternMatch.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/unittests/IR/IRBuilderTest.cpp b/unittests/IR/IRBuilderTest.cpp
index e6db8c66df..5d67e700a9 100644
--- a/unittests/IR/IRBuilderTest.cpp
+++ b/unittests/IR/IRBuilderTest.cpp
@@ -16,7 +16,7 @@
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/MDBuilder.h"
#include "llvm/IR/Module.h"
-#include "llvm/Support/NoFolder.h"
+#include "llvm/IR/NoFolder.h"
#include "gtest/gtest.h"
using namespace llvm;
diff --git a/unittests/IR/PatternMatch.cpp b/unittests/IR/PatternMatch.cpp
index 655a3d5340..da1638163f 100644
--- a/unittests/IR/PatternMatch.cpp
+++ b/unittests/IR/PatternMatch.cpp
@@ -19,10 +19,10 @@
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/MDBuilder.h"
#include "llvm/IR/Module.h"
+#include "llvm/IR/NoFolder.h"
#include "llvm/IR/Operator.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/IR/Type.h"
-#include "llvm/Support/NoFolder.h"
#include "gtest/gtest.h"
using namespace llvm;