diff options
author | Nikita Popov <npopov@redhat.com> | 2023-11-21 16:59:58 +0100 |
---|---|---|
committer | Nikita Popov <npopov@redhat.com> | 2023-11-22 09:06:36 +0100 |
commit | 03f05a4e72891237264ab48adf62034aaac8bd46 (patch) | |
tree | 869f1fcc1ac712f36cc77cc3aecca09ec2fcf6a4 /llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp | |
parent | 06e733b198696b31285acbf359753c62e7ad06fd (diff) | |
download | llvm-03f05a4e72891237264ab48adf62034aaac8bd46.zip llvm-03f05a4e72891237264ab48adf62034aaac8bd46.tar.gz llvm-03f05a4e72891237264ab48adf62034aaac8bd46.tar.bz2 |
[IR] Don't include GenericDomTreeConstruction.h in header (NFC)
The whole point of the GenericDomTree.h vs
GenericDomTreeConstruction.h distinction is that the latter only
needs to be included in the source file and not the header.
Diffstat (limited to 'llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp b/llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp index d250fd93..f005280 100644 --- a/llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp +++ b/llvm/lib/CodeGen/AssignmentTrackingAnalysis.cpp @@ -25,6 +25,7 @@ #include <assert.h> #include <cstdint> #include <optional> +#include <queue> #include <sstream> #include <unordered_map> |