summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-07-29 17:23:00 +0000
committerChris Lattner <sabre@nondot.org>2004-07-29 17:23:00 +0000
commit879313ae3aa2052cc40ba6f0f25c17e7a5a6f0da (patch)
tree5c19d8e0a864d99a3d027797582270013d586cbd /lib
parent4ab78e0489742b5638741275635d9872404cec26 (diff)
downloadllvm-879313ae3aa2052cc40ba6f0f25c17e7a5a6f0da.tar.gz
llvm-879313ae3aa2052cc40ba6f0f25c17e7a5a6f0da.tar.bz2
llvm-879313ae3aa2052cc40ba6f0f25c17e7a5a6f0da.tar.xz
Fix #includes of i*.h => Instructions.h as per PR403:
http://llvm.cs.uiuc.edu/PR403 . git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/UnreachableBlockElim.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/UnreachableBlockElim.cpp b/lib/CodeGen/UnreachableBlockElim.cpp
index 1b59ac4a66..27355ec6d3 100644
--- a/lib/CodeGen/UnreachableBlockElim.cpp
+++ b/lib/CodeGen/UnreachableBlockElim.cpp
@@ -21,8 +21,8 @@
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/Passes.h"
-#include "llvm/iPHINode.h"
#include "llvm/Constant.h"
+#include "llvm/Instructions.h"
#include "llvm/Function.h"
#include "llvm/Pass.h"
#include "llvm/Support/CFG.h"