summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/InlineSimple.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-08 22:03:00 +0000
committerChris Lattner <sabre@nondot.org>2002-04-08 22:03:00 +0000
commit237e6d10f24863cf48821b601b4164794e89d847 (patch)
tree5720ecbff3742315d087c34777c5ce4cca353c52 /lib/Transforms/IPO/InlineSimple.cpp
parent4d669b510c1d609c6b3fe98ac14ae38bd7c011f6 (diff)
downloadllvm-237e6d10f24863cf48821b601b4164794e89d847.tar.gz
llvm-237e6d10f24863cf48821b601b4164794e89d847.tar.bz2
llvm-237e6d10f24863cf48821b601b4164794e89d847.tar.xz
s/Method/Function
Remove extraneous #includes of llvm/Assembly/Writer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2178 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--lib/Transforms/IPO/InlineSimple.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp
index d720c3c2cc..461f5974f4 100644
--- a/lib/Transforms/IPO/InlineSimple.cpp
+++ b/lib/Transforms/IPO/InlineSimple.cpp
@@ -22,13 +22,12 @@
#include "llvm/iTerminators.h"
#include "llvm/iPHINode.h"
#include "llvm/iOther.h"
+#include "llvm/Type.h"
#include <algorithm>
#include <map>
#include <iostream>
using std::cerr;
-#include "llvm/Assembly/Writer.h"
-
// RemapInstruction - Convert the instruction operands from referencing the
// current values into those specified by ValueMap.
//