summaryrefslogtreecommitdiff
path: root/lib/IR/AsmWriter.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 11:45:46 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 11:45:46 +0000
commit03e36d752c461490eb8e07cdbc4fcc92185ff765 (patch)
treece0971989d91420aa75fc6b5f6d471587e376ca4 /lib/IR/AsmWriter.cpp
parent1fd02bc228441fd84d12e53f1094df8f0d238610 (diff)
downloadllvm-03e36d752c461490eb8e07cdbc4fcc92185ff765.tar.gz
llvm-03e36d752c461490eb8e07cdbc4fcc92185ff765.tar.bz2
llvm-03e36d752c461490eb8e07cdbc4fcc92185ff765.tar.xz
[Modules] Move CFG.h to the IR library as it defines graph traits over
IR types. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/IR/AsmWriter.cpp')
-rw-r--r--lib/IR/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/AsmWriter.cpp b/lib/IR/AsmWriter.cpp
index d414f764d3..eb932ec51f 100644
--- a/lib/IR/AsmWriter.cpp
+++ b/lib/IR/AsmWriter.cpp
@@ -21,6 +21,7 @@
#include "llvm/ADT/StringExtras.h"
#include "llvm/DebugInfo.h"
#include "llvm/IR/AssemblyAnnotationWriter.h"
+#include "llvm/IR/CFG.h"
#include "llvm/IR/CallingConv.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
@@ -32,7 +33,6 @@
#include "llvm/IR/Operator.h"
#include "llvm/IR/TypeFinder.h"
#include "llvm/IR/ValueSymbolTable.h"
-#include "llvm/Support/CFG.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Dwarf.h"
#include "llvm/Support/ErrorHandling.h"