[polly] r202830 - [Modules] Update to reflect the move of CFG.h to the IR library in LLVM
Chandler Carruth
chandlerc at gmail.com
Tue Mar 4 03:47:38 PST 2014
Author: chandlerc
Date: Tue Mar 4 05:47:37 2014
New Revision: 202830
URL: http://llvm.org/viewvc/llvm-project?rev=202830&view=rev
Log:
[Modules] Update to reflect the move of CFG.h to the IR library in LLVM
r202827.
Modified:
polly/trunk/lib/IndVarSimplify.cpp
polly/trunk/lib/Support/ScopHelper.cpp
Modified: polly/trunk/lib/IndVarSimplify.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/IndVarSimplify.cpp?rev=202830&r1=202829&r2=202830&view=diff
==============================================================================
--- polly/trunk/lib/IndVarSimplify.cpp (original)
+++ polly/trunk/lib/IndVarSimplify.cpp Tue Mar 4 05:47:37 2014
@@ -35,6 +35,7 @@
#include "llvm/Analysis/LoopPass.h"
#include "llvm/Analysis/ScalarEvolutionExpander.h"
#include "llvm/IR/BasicBlock.h"
+#include "llvm/IR/CFG.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/Dominators.h"
@@ -42,7 +43,6 @@
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Type.h"
-#include "llvm/Support/CFG.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
Modified: polly/trunk/lib/Support/ScopHelper.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Support/ScopHelper.cpp?rev=202830&r1=202829&r2=202830&view=diff
==============================================================================
--- polly/trunk/lib/Support/ScopHelper.cpp (original)
+++ polly/trunk/lib/Support/ScopHelper.cpp Tue Mar 4 05:47:37 2014
@@ -17,7 +17,7 @@
#include "llvm/Analysis/RegionInfo.h"
#include "llvm/Analysis/ScalarEvolution.h"
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
-#include "llvm/Support/CFG.h"
+#include "llvm/IR/CFG.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#define DEBUG_TYPE "polly-scop-helper"
More information about the llvm-commits
mailing list