From dd616e95196312291676d787a244dcb3a686e2c4 Mon Sep 17 00:00:00 2001 From: Siddharth Bhat Date: Thu, 17 Aug 2017 22:21:16 +0000 Subject: [PATCH] [ScpInliner] Move DEBUG-TYPE to below all includes to prevent cross-module interaction. [NFC] This fixes compile errors. llvm-svn: 311130 --- polly/lib/Transform/ScopInliner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polly/lib/Transform/ScopInliner.cpp b/polly/lib/Transform/ScopInliner.cpp index 443e544b39f9..2760cc3a5629 100644 --- a/polly/lib/Transform/ScopInliner.cpp +++ b/polly/lib/Transform/ScopInliner.cpp @@ -14,8 +14,6 @@ // //===----------------------------------------------------------------------===// -#define DEBUG_TYPE "polly-scop-inliner" - #include "polly/LinkAllPasses.h" #include "polly/RegisterPasses.h" #include "polly/ScopDetection.h" @@ -25,6 +23,8 @@ #include "llvm/Passes/PassBuilder.h" #include "llvm/Transforms/IPO/AlwaysInliner.h" +#define DEBUG_TYPE "polly-scop-inliner" + using namespace polly; extern bool polly::PollyAllowFullFunction;