From 2d61a3f38471950ea4711a0a57dcb50226c905fa Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 14 Apr 2010 18:49:17 +0000 Subject: [PATCH] Refine #includes. llvm-svn: 101269 --- include/llvm/CodeGen/FastISel.h | 3 ++- lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h index 8d336654411..b1f73cba30c 100644 --- a/include/llvm/CodeGen/FastISel.h +++ b/include/llvm/CodeGen/FastISel.h @@ -15,8 +15,9 @@ #define LLVM_CODEGEN_FASTISEL_H #include "llvm/ADT/DenseMap.h" +#ifndef NDEBUG #include "llvm/ADT/SmallSet.h" -#include "llvm/CodeGen/SelectionDAGNodes.h" +#endif namespace llvm { diff --git a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h index 95439e4cad9..45a15ca0e7f 100644 --- a/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h +++ b/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.h @@ -23,7 +23,7 @@ #include "llvm/ADT/SmallSet.h" #endif #include "llvm/CodeGen/ValueTypes.h" -#include "llvm/CodeGen/SelectionDAGNodes.h" +#include "llvm/CodeGen/ISDOpcodes.h" #include namespace llvm {