From: Chris Lattner Date: Sat, 17 Aug 2002 22:02:41 +0000 (+0000) Subject: Fix stupid oversight of missing #include. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e4619181cc0812e2930aebb260d4e8436afc67ae;p=oota-llvm.git Fix stupid oversight of missing #include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3367 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Reader/ConstantReader.cpp b/lib/Bytecode/Reader/ConstantReader.cpp index 88bfa3444a2..df1336084e3 100644 --- a/lib/Bytecode/Reader/ConstantReader.cpp +++ b/lib/Bytecode/Reader/ConstantReader.cpp @@ -10,6 +10,7 @@ #include "ReaderInternals.h" #include "llvm/Module.h" +#include "llvm/Constants.h" #include using std::make_pair;