commit | 4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1 | [log] [tgz] |
---|---|---|
author | Reid Kleckner <rnk@google.com> | Thu Nov 14 15:15:48 2019 -0800 |
committer | Reid Kleckner <rnk@google.com> | Thu Nov 14 15:23:15 2019 -0800 |
tree | 40d8eb37858a027673eaf70cc3f88ab2b434fe45 | |
parent | 76ac1660f7671d0707864e551e2e39c98ac02907 [diff] [blame] |
Add missing includes needed to prune LLVMContext.h include, NFC These are a pre-requisite to removing #include "llvm/Support/Options.h" from LLVMContext.h: https://reviews.llvm.org/D70280
diff --git a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp index f740051..9bd1596 100644 --- a/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp +++ b/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
@@ -29,6 +29,7 @@ #include "llvm/IR/MDBuilder.h" #include "llvm/InitializePasses.h" #include "llvm/Support/BranchProbability.h" +#include "llvm/Support/CommandLine.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Transforms/Utils.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h"