[Gardening] Made FSOEnableGenerics option static.

The command-line option for sil-fso-enable-generics was previously
visible outside the FunctionSignatureOpts translation unit.  It is not
any longer.
This commit is contained in:
Nate Chandler
2019-09-20 10:08:46 -07:00
parent 782d6cd15c
commit 003876158c

View File

@@ -65,7 +65,7 @@ using ArgumentIndexMap = llvm::SmallDenseMap<int, int>;
//===----------------------------------------------------------------------===//
/// Set to true to enable the support for partial specialization.
llvm::cl::opt<bool>
static llvm::cl::opt<bool>
FSOEnableGenerics("sil-fso-enable-generics", llvm::cl::init(true),
llvm::cl::desc("Support function signature optimization "
"of generic functions"));