summaryrefslogtreecommitdiff
path: root/tools/bugpoint-passes
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-06 03:23:41 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-06 03:23:41 +0000
commit67f6bf70d2cdb8fe74fe6872d90b7d09afe5dd69 (patch)
tree465523c0eb65b7f8c9e04c6af77cfb3e51aa0326 /tools/bugpoint-passes
parentaa3d8b2d6cffba317e5b2fac86c741255fed0187 (diff)
downloadllvm-67f6bf70d2cdb8fe74fe6872d90b7d09afe5dd69.tar.gz
llvm-67f6bf70d2cdb8fe74fe6872d90b7d09afe5dd69.tar.bz2
llvm-67f6bf70d2cdb8fe74fe6872d90b7d09afe5dd69.tar.xz
[Layering] Move InstVisitor.h into the IR library as it is pretty
obviously coupled to the IR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203064 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint-passes')
-rw-r--r--tools/bugpoint-passes/TestPasses.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint-passes/TestPasses.cpp b/tools/bugpoint-passes/TestPasses.cpp
index 118c98a459..cb27bca1a5 100644
--- a/tools/bugpoint-passes/TestPasses.cpp
+++ b/tools/bugpoint-passes/TestPasses.cpp
@@ -14,9 +14,9 @@
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/Constant.h"
+#include "llvm/IR/InstVisitor.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Type.h"
-#include "llvm/InstVisitor.h"
#include "llvm/Pass.h"
using namespace llvm;