forked from OSchip/llvm-project
Fix warning by cl::opt<int> -> cl::opt<unsigned>
llvm-svn: 329461
This commit is contained in:
parent
0913ca1978
commit
9cb59b92cc
|
@ -111,10 +111,11 @@ static cl::opt<std::string> ClWriteSummary(
|
||||||
cl::desc("Write summary to given YAML file after running pass"),
|
cl::desc("Write summary to given YAML file after running pass"),
|
||||||
cl::Hidden);
|
cl::Hidden);
|
||||||
|
|
||||||
static cl::opt<int> ClThreshold("wholeprogramdevirt-branch-funnel-threshold",
|
static cl::opt<unsigned>
|
||||||
cl::Hidden, cl::init(10), cl::ZeroOrMore,
|
ClThreshold("wholeprogramdevirt-branch-funnel-threshold", cl::Hidden,
|
||||||
cl::desc("Maximum number of call targets per "
|
cl::init(10), cl::ZeroOrMore,
|
||||||
"call site to enable branch funnels"));
|
cl::desc("Maximum number of call targets per "
|
||||||
|
"call site to enable branch funnels"));
|
||||||
|
|
||||||
// Find the minimum offset that we may store a value of size Size bits at. If
|
// Find the minimum offset that we may store a value of size Size bits at. If
|
||||||
// IsAfter is set, look for an offset before the object, otherwise look for an
|
// IsAfter is set, look for an offset before the object, otherwise look for an
|
||||||
|
|
Loading…
Reference in New Issue