diff options
author | Nikita Popov <llvm@npopov.com> | 2024-06-29 15:05:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-29 15:05:04 +0200 |
commit | 74deadf19650f6f3b6392ba09caa20dd38ae41e0 (patch) | |
tree | 1ed9b668dc890fa0818728c4042d78830864c932 /llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp | |
parent | 02b60893c3858d5d76cdca1bd9b684bdd7093fb7 (diff) | |
download | llvm-74deadf19650f6f3b6392ba09caa20dd38ae41e0.zip llvm-74deadf19650f6f3b6392ba09caa20dd38ae41e0.tar.gz llvm-74deadf19650f6f3b6392ba09caa20dd38ae41e0.tar.bz2 |
[IRBuilder] Don't include Module.h (NFC) (#97159)
This used to be necessary to fetch the DataLayout, but isn't anymore.
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp index 731104d..c2affaf 100644 --- a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp +++ b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp @@ -28,6 +28,7 @@ #include "llvm/IR/IRBuilder.h" #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/MDBuilder.h" +#include "llvm/IR/Module.h" #include "llvm/IR/PassManager.h" #include "llvm/IR/ProfDataUtils.h" #include "llvm/Support/BranchProbability.h" |