[llvm] r307940 - [NFC] Move DEBUG_TYPE macro below includes...
Jakub Kuderski via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 13 12:30:52 PDT 2017
Author: kuhar
Date: Thu Jul 13 12:30:52 2017
New Revision: 307940
URL: http://llvm.org/viewvc/llvm-project?rev=307940&view=rev
Log:
[NFC] Move DEBUG_TYPE macro below includes...
in MachineCombiner.cpp.
Modified:
llvm/trunk/lib/CodeGen/MachineCombiner.cpp
Modified: llvm/trunk/lib/CodeGen/MachineCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineCombiner.cpp?rev=307940&r1=307939&r2=307940&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineCombiner.cpp Thu Jul 13 12:30:52 2017
@@ -11,8 +11,6 @@
// instructions do not lengthen the critical path or the resource depth.
//===----------------------------------------------------------------------===//
-#define DEBUG_TYPE "machine-combiner"
-
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/CodeGen/MachineDominators.h"
@@ -32,6 +30,8 @@
using namespace llvm;
+#define DEBUG_TYPE "machine-combiner"
+
STATISTIC(NumInstCombined, "Number of machineinst combined");
namespace {
More information about the llvm-commits
mailing list