commit | e4619181cc0812e2930aebb260d4e8436afc67ae | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Aug 17 22:02:41 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Aug 17 22:02:41 2002 +0000 |
tree | a200904c3f51b24c4833113c3af53988e2e859ee | |
parent | 7473413072a92c119cf123c5266b26bc041e0bd5 [diff] [blame] |
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 88bfa34..df13360 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 <algorithm> using std::make_pair;