diff options
| author | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-03-01 18:40:25 +0000 |
|---|---|---|
| committer | Johannes Doerfert <doerfert@cs.uni-saarland.de> | 2015-03-01 18:40:25 +0000 |
| commit | 3fe584d64f58413ade2be74c61446ed8e0603d1a (patch) | |
| tree | ff64bd1ab3f841870632e12eee910d3c09f3cc05 /polly/lib/Analysis/ScopPass.cpp | |
| parent | 0200f2507ef77ddbf2bdd0798ad80d89d9a7ad48 (diff) | |
| download | bcm5719-llvm-3fe584d64f58413ade2be74c61446ed8e0603d1a.tar.gz bcm5719-llvm-3fe584d64f58413ade2be74c61446ed8e0603d1a.zip | |
[Refactor] Add a Scop & as argument to printScop
This is the first step in the interface simplification.
llvm-svn: 230897
Diffstat (limited to 'polly/lib/Analysis/ScopPass.cpp')
| -rw-r--r-- | polly/lib/Analysis/ScopPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Analysis/ScopPass.cpp b/polly/lib/Analysis/ScopPass.cpp index 053f3d16ada..1c0ddb09aae 100644 --- a/polly/lib/Analysis/ScopPass.cpp +++ b/polly/lib/Analysis/ScopPass.cpp @@ -28,7 +28,7 @@ bool ScopPass::runOnRegion(Region *R, RGPassManager &RGM) { void ScopPass::print(raw_ostream &OS, const Module *M) const { if (S) - printScop(OS); + printScop(OS, *S); } void ScopPass::getAnalysisUsage(AnalysisUsage &AU) const { |

