Fix formatting

llvm-svn: 229360
This commit is contained in:
Tobias Grosser 2015-02-16 06:40:23 +00:00
parent 7e8dcef094
commit c3fe35df4c
2 changed files with 2 additions and 4 deletions

View File

@ -35,8 +35,7 @@ void polly::registerCanonicalicationPasses(llvm::legacy::PassManagerBase &PM) {
namespace {
class PollyCanonicalize : public ModulePass {
PollyCanonicalize(const PollyCanonicalize &) = delete;
const PollyCanonicalize &
operator=(const PollyCanonicalize &) = delete;
const PollyCanonicalize &operator=(const PollyCanonicalize &) = delete;
public:
static char ID;

View File

@ -66,8 +66,7 @@ static void DemotePHI(
///
class CodePreparation : public FunctionPass {
CodePreparation(const CodePreparation &) = delete;
const CodePreparation &
operator=(const CodePreparation &) = delete;
const CodePreparation &operator=(const CodePreparation &) = delete;
LoopInfo *LI;
ScalarEvolution *SE;