Following Chris's advice, I'm pruning some unnecessary .h includes that I'm
authorMisha Brukman <brukman+llvm@gmail.com>
Sat, 14 Sep 2002 02:06:53 +0000 (02:06 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Sat, 14 Sep 2002 02:06:53 +0000 (02:06 +0000)
noticing. Since Module includes Function, and eventually, BasicBlock and
GlobalVariable, the last three are unnecessary to be included directly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3713 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/MutateStructTypes.cpp

index 08ff6b8198d5c6665a88861ea90edfa799ad2544..8130c6f0604985c9dd9ec95ce0e5c08ed1943f3c 100644 (file)
@@ -14,9 +14,6 @@
 #include "llvm/Transforms/IPO/MutateStructTypes.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Module.h"
-#include "llvm/Function.h"
-#include "llvm/BasicBlock.h"
-#include "llvm/GlobalVariable.h"
 #include "llvm/SymbolTable.h"
 #include "llvm/iPHINode.h"
 #include "llvm/iMemory.h"