From 833ec1deed4568410e4fdfa0de9021d32c1479ff Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 14 Apr 2010 18:57:18 +0000 Subject: [PATCH] Fix a missing #include. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101270 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/FastISel.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index b1f73cba30c..a1752d35344 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -18,6 +18,7 @@ #ifndef NDEBUG #include "llvm/ADT/SmallSet.h" #endif +#include "llvm/CodeGen/ValueTypes.h" namespace llvm {