summaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 11:01:28 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 11:01:28 +0000
commit4bbfbdf7d7a3c4dbdd2d7bb190ef8a0a8246c218 (patch)
tree1356df7d4762015209dc77d888a37ef4ade812a7 /lib/CodeGen/CodeGenPrepare.cpp
parentbd7cba0d8114059dfa3550cbe85e4c50ca77eae2 (diff)
downloadllvm-4bbfbdf7d7a3c4dbdd2d7bb190ef8a0a8246c218.tar.gz
llvm-4bbfbdf7d7a3c4dbdd2d7bb190ef8a0a8246c218.tar.bz2
llvm-4bbfbdf7d7a3c4dbdd2d7bb190ef8a0a8246c218.tar.xz
[Modules] Move CallSite into the IR library where it belogs. It is
abstracting between a CallInst and an InvokeInst, both of which are IR concepts. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r--lib/CodeGen/CodeGenPrepare.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenPrepare.cpp b/lib/CodeGen/CodeGenPrepare.cpp
index fab53fe9fc..632e7e30d7 100644
--- a/lib/CodeGen/CodeGenPrepare.cpp
+++ b/lib/CodeGen/CodeGenPrepare.cpp
@@ -20,6 +20,7 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/ADT/ValueMap.h"
#include "llvm/Analysis/InstructionSimplify.h"
+#include "llvm/IR/CallSite.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/DerivedTypes.h"
@@ -31,7 +32,6 @@
#include "llvm/IR/Instructions.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/Pass.h"
-#include "llvm/Support/CallSite.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/PatternMatch.h"