From: Chandler Carruth Date: Mon, 21 Jan 2013 12:09:41 +0000 (+0000) Subject: Sink InlineCost.cpp into IPA -- it is now officially an interprocedural X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d73bc5fbe25a856321ac6cab4c6fce49e877b302;p=platform%2Fupstream%2Fllvm.git Sink InlineCost.cpp into IPA -- it is now officially an interprocedural analysis. How cute that it wasn't previously. ;] Part of this confusion stems from the flattened header file tree. Thanks to Benjamin for pointing out the goof on IRC, and we're considering un-flattening the headers, so speak now if that would bug you. llvm-svn: 173033 --- diff --git a/llvm/lib/Analysis/CMakeLists.txt b/llvm/lib/Analysis/CMakeLists.txt index 78abe0f..4c64c4a 100644 --- a/llvm/lib/Analysis/CMakeLists.txt +++ b/llvm/lib/Analysis/CMakeLists.txt @@ -18,7 +18,6 @@ add_llvm_library(LLVMAnalysis DomPrinter.cpp DominanceFrontier.cpp IVUsers.cpp - InlineCost.cpp InstCount.cpp InstructionSimplify.cpp Interval.cpp diff --git a/llvm/lib/Analysis/IPA/CMakeLists.txt b/llvm/lib/Analysis/IPA/CMakeLists.txt index 318119b..67b4135 100644 --- a/llvm/lib/Analysis/IPA/CMakeLists.txt +++ b/llvm/lib/Analysis/IPA/CMakeLists.txt @@ -5,6 +5,7 @@ add_llvm_library(LLVMipa FindUsedTypes.cpp GlobalsModRef.cpp IPA.cpp + InlineCost.cpp ) add_dependencies(LLVMipa intrinsics_gen) diff --git a/llvm/lib/Analysis/InlineCost.cpp b/llvm/lib/Analysis/IPA/InlineCost.cpp similarity index 100% rename from llvm/lib/Analysis/InlineCost.cpp rename to llvm/lib/Analysis/IPA/InlineCost.cpp