From 8f48814879c06bbf9f211fa5d959419f0d2d38b6 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Mon, 25 May 2020 12:56:44 +0100 Subject: [PATCH] FunctionLoweringInfo.h - move APInt.h dependency to FunctionLoweringInfo.cpp. NFC. --- llvm/include/llvm/CodeGen/FunctionLoweringInfo.h | 2 +- llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h b/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h index 37e1e0d..c99ca00 100644 --- a/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h +++ b/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h @@ -13,7 +13,7 @@ #ifndef LLVM_CODEGEN_FUNCTIONLOWERINGINFO_H #define LLVM_CODEGEN_FUNCTIONLOWERINGINFO_H -#include "llvm/ADT/APInt.h" + #include "llvm/ADT/BitVector.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/IndexedMap.h" diff --git a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp index 4f46f19..7a5fd7d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/CodeGen/FunctionLoweringInfo.h" +#include "llvm/ADT/APInt.h" #include "llvm/Analysis/LegacyDivergenceAnalysis.h" #include "llvm/CodeGen/Analysis.h" #include "llvm/CodeGen/MachineFrameInfo.h" -- 2.7.4