From a9a8f0f432966438800ffabb1b740a4cc8cd2599 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 13 Nov 2013 18:07:27 +0000 Subject: DIEHash: Move header include to be first in the implementation file to flush out header inclusion ordering issues git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194588 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DIEHash.cpp | 3 ++- lib/CodeGen/AsmPrinter/DIEHash.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/CodeGen/AsmPrinter') diff --git a/lib/CodeGen/AsmPrinter/DIEHash.cpp b/lib/CodeGen/AsmPrinter/DIEHash.cpp index 85761c6..95eca90 100644 --- a/lib/CodeGen/AsmPrinter/DIEHash.cpp +++ b/lib/CodeGen/AsmPrinter/DIEHash.cpp @@ -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" diff --git a/lib/CodeGen/AsmPrinter/DIEHash.h b/lib/CodeGen/AsmPrinter/DIEHash.h index b9cf7ce..f0c4ef9 100644 --- a/lib/CodeGen/AsmPrinter/DIEHash.h +++ b/lib/CodeGen/AsmPrinter/DIEHash.h @@ -11,6 +11,7 @@ // //===----------------------------------------------------------------------===// +#include "DIE.h" #include "llvm/ADT/DenseMap.h" #include "llvm/Support/MD5.h" -- cgit v1.1