[llvm] ea0880d - TypeMetadataUtils.h - reduce Instructions.h include to forward declaration. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 5 09:41:02 PDT 2020
Author: Simon Pilgrim
Date: 2020-06-05T17:40:33+01:00
New Revision: ea0880ddefbcd634e462d87ff09b7bc720562659
URL: https://github.com/llvm/llvm-project/commit/ea0880ddefbcd634e462d87ff09b7bc720562659
DIFF: https://github.com/llvm/llvm-project/commit/ea0880ddefbcd634e462d87ff09b7bc720562659.diff
LOG: TypeMetadataUtils.h - reduce Instructions.h include to forward declaration. NFC.
Move implicit include dependencies down to source file.
Added:
Modified:
llvm/include/llvm/Analysis/TypeMetadataUtils.h
llvm/lib/Analysis/TypeMetadataUtils.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/TypeMetadataUtils.h b/llvm/include/llvm/Analysis/TypeMetadataUtils.h
index ea59c0cbc871..3f7603142900 100644
--- a/llvm/include/llvm/Analysis/TypeMetadataUtils.h
+++ b/llvm/include/llvm/Analysis/TypeMetadataUtils.h
@@ -15,11 +15,16 @@
#define LLVM_ANALYSIS_TYPEMETADATAUTILS_H
#include "llvm/ADT/SmallVector.h"
-#include "llvm/IR/Instructions.h"
+#include <cstdint>
namespace llvm {
+class CallBase;
+class CallInst;
+class Constant;
class DominatorTree;
+class Instruction;
+class Module;
/// The type of CFI jumptable needed for a function.
enum CfiFunctionLinkage {
diff --git a/llvm/lib/Analysis/TypeMetadataUtils.cpp b/llvm/lib/Analysis/TypeMetadataUtils.cpp
index f187d0796771..8735d56f907a 100644
--- a/llvm/lib/Analysis/TypeMetadataUtils.cpp
+++ b/llvm/lib/Analysis/TypeMetadataUtils.cpp
@@ -14,6 +14,7 @@
#include "llvm/Analysis/TypeMetadataUtils.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/Dominators.h"
+#include "llvm/IR/Instructions.h"
#include "llvm/IR/Intrinsics.h"
#include "llvm/IR/Module.h"
More information about the llvm-commits
mailing list