aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineOperand.cpp
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2020-01-17 16:04:02 -0800
committerReid Kleckner <rnk@google.com>2020-01-17 16:36:09 -0800
commit423e3db6a8202c57f1b7da52c35a34b3562602b3 (patch)
treee90a9b972f00f0f4934e2effa420f4e1ce6e9793 /llvm/lib/CodeGen/MachineOperand.cpp
parentc7453fad0625be37f4b885c6cc2341fb12a66395 (diff)
downloadllvm-423e3db6a8202c57f1b7da52c35a34b3562602b3.zip
llvm-423e3db6a8202c57f1b7da52c35a34b3562602b3.tar.gz
llvm-423e3db6a8202c57f1b7da52c35a34b3562602b3.tar.bz2
Remove unneeded FoldingSet.h include from Attributes.h
Avoids 637 extra FoldingSet.h and Allocator.h includes. FoldingSet.h needs Allocator.h, which is relatively expensive.
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineOperand.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp
index 7b8f011..0614ab5 100644
--- a/llvm/lib/CodeGen/MachineOperand.cpp
+++ b/llvm/lib/CodeGen/MachineOperand.cpp
@@ -11,6 +11,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/CodeGen/MachineOperand.h"
+#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Analysis/Loads.h"
#include "llvm/Analysis/MemoryLocation.h"