diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-01-28 05:51:58 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-28 05:51:58 +0000 |
commit | 9bfcf28d88db9968c85e347acac0f2ae3fecc289 (patch) | |
tree | 316c2e8386b7cfa2c5e226c6db9ecf4e0f18e177 /llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp | |
parent | 294e7daaac6711a035234e19ae5e7d12ccd54dbb (diff) | |
download | bcm5719-llvm-9bfcf28d88db9968c85e347acac0f2ae3fecc289.tar.gz bcm5719-llvm-9bfcf28d88db9968c85e347acac0f2ae3fecc289.zip |
Cleaned up includes in various ObjCARC files and removed some whitespace violations.
llvm-svn: 173663
Diffstat (limited to 'llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp')
-rw-r--r-- | llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp b/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp index ffc54050d0b..633f9884842 100644 --- a/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp +++ b/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp @@ -24,8 +24,27 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "objc-arc-expand" + #include "ObjCARC.h" +#include "llvm/ADT/StringRef.h" +#include "llvm/IR/Function.h" +#include "llvm/IR/Instruction.h" +#include "llvm/IR/Instructions.h" +#include "llvm/IR/Value.h" +#include "llvm/Pass.h" +#include "llvm/PassAnalysisSupport.h" +#include "llvm/PassRegistry.h" +#include "llvm/PassSupport.h" +#include "llvm/Support/Casting.h" +#include "llvm/Support/Debug.h" +#include "llvm/Support/InstIterator.h" +#include "llvm/Support/raw_ostream.h" + +namespace llvm { + class Module; +} + using namespace llvm; using namespace llvm::objcarc; @@ -108,4 +127,3 @@ bool ObjCARCExpand::runOnFunction(Function &F) { return Changed; } - |