DIEHash: Move header include to be first in the implementation file to flush out header inclusion ordering issues

llvm-svn: 194588
This commit is contained in:
David Blaikie 2013-11-13 18:07:27 +00:00
parent 3ebae49748
commit 9208b5ed8e
2 changed files with 3 additions and 1 deletions

View File

@ -13,8 +13,9 @@
#define DEBUG_TYPE "dwarfdebug"
#include "DIE.h"
#include "DIEHash.h"
#include "DIE.h"
#include "DwarfCompileUnit.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/StringRef.h"

View File

@ -11,6 +11,7 @@
//
//===----------------------------------------------------------------------===//
#include "DIE.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/Support/MD5.h"