diff options
author | Reid Kleckner <rnk@google.com> | 2019-11-14 15:15:48 -0800 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-11-14 15:23:15 -0800 |
commit | 4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1 (patch) | |
tree | 40d8eb37858a027673eaf70cc3f88ab2b434fe45 /llvm/lib/Analysis/ProfileSummaryInfo.cpp | |
parent | 76ac1660f7671d0707864e551e2e39c98ac02907 (diff) | |
download | bcm5719-llvm-4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1.tar.gz bcm5719-llvm-4c1a1d3cf97e1ede466e2ad318f2811283ca0fb1.zip |
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
Diffstat (limited to 'llvm/lib/Analysis/ProfileSummaryInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/ProfileSummaryInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/ProfileSummaryInfo.cpp b/llvm/lib/Analysis/ProfileSummaryInfo.cpp index 972663df3ed..911d39d9a26 100644 --- a/llvm/lib/Analysis/ProfileSummaryInfo.cpp +++ b/llvm/lib/Analysis/ProfileSummaryInfo.cpp @@ -19,6 +19,7 @@ #include "llvm/IR/Module.h" #include "llvm/IR/ProfileSummary.h" #include "llvm/InitializePasses.h" +#include "llvm/Support/CommandLine.h" using namespace llvm; // The following two parameters determine the threshold for a count to be |