[ScpInliner] Move DEBUG-TYPE to below all includes to prevent cross-module interaction. [NFC]

This fixes compile errors.

llvm-svn: 311130
This commit is contained in:
Siddharth Bhat 2017-08-17 22:21:16 +00:00
parent 4c432b202f
commit dd616e9519
1 changed files with 2 additions and 2 deletions

View File

@ -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;