From: Richard Smith Date: Tue, 13 Oct 2015 21:32:32 +0000 (+0000) Subject: Fix layering violation: Analysis should not include headers from Transforms X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2f675d1a1df1e785ba3a50f91346646ed221ec9b;p=oota-llvm.git Fix layering violation: Analysis should not include headers from Transforms (and in this case isn't even using anything from those headers). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250228 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/ObjCARCAnalysisUtils.h b/include/llvm/Analysis/ObjCARCAnalysisUtils.h index b032c0432b3..29d99c9d316 100644 --- a/include/llvm/Analysis/ObjCARCAnalysisUtils.h +++ b/include/llvm/Analysis/ObjCARCAnalysisUtils.h @@ -30,11 +30,11 @@ #include "llvm/Analysis/Passes.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/IR/CallSite.h" +#include "llvm/IR/Constants.h" #include "llvm/IR/InstIterator.h" +#include "llvm/IR/LLVMContext.h" #include "llvm/IR/Module.h" #include "llvm/Pass.h" -#include "llvm/Transforms/ObjCARC.h" -#include "llvm/Transforms/Utils/Local.h" namespace llvm { class raw_ostream;