forked from OSchip/llvm-project
[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:
parent
4c432b202f
commit
dd616e9519
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue