Fix some build warnings.

DEBUG_TYPE should be defined before the inclusion of LLVM's Support/Debug.h.

Swift SVN r18640
This commit is contained in:
Mark Lacey
2014-05-26 20:17:54 +00:00
parent b25eeec435
commit cd00cfbf8f
11 changed files with 11 additions and 11 deletions

View File

@@ -10,6 +10,7 @@
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-module"
#include "swift/SIL/SILModule.h"
#include "swift/SIL/SILExternalSource.h"
#include "swift/SIL/SILVisitor.h"
@@ -19,7 +20,6 @@
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Debug.h"
#define DEBUG_TYPE "sil-module"
using namespace swift;
STATISTIC(NumFuncLinked, "Number of SIL functions linked");