From: Benjamin Kramer Date: Fri, 21 Aug 2009 13:59:49 +0000 (+0000) Subject: Fix build on platforms where stdint.h is not implicitly included in the standard... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1f2b32c5c6502c74890c188b0224e4c01ff22da4;p=oota-llvm.git Fix build on platforms where stdint.h is not implicitly included in the standard headers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79629 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCAssembler.h b/include/llvm/MC/MCAssembler.h index a714e4503db..b2a24159a75 100644 --- a/include/llvm/MC/MCAssembler.h +++ b/include/llvm/MC/MCAssembler.h @@ -12,6 +12,7 @@ #include "llvm/ADT/ilist.h" #include "llvm/ADT/ilist_node.h" +#include "llvm/Support/DataTypes.h" namespace llvm { class raw_ostream;