mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-19 08:24:12 +00:00
[llvm-size] Make global variables static
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@335397 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3d59bc0342
commit
a64c3aa1f5
@ -68,7 +68,7 @@ cl::opt<bool>
|
||||
static cl::list<std::string>
|
||||
ArchFlags("arch", cl::desc("architecture(s) from a Mach-O file to dump"),
|
||||
cl::ZeroOrMore);
|
||||
bool ArchAll = false;
|
||||
static bool ArchAll = false;
|
||||
|
||||
enum RadixTy { octal = 8, decimal = 10, hexadecimal = 16 };
|
||||
static cl::opt<unsigned int>
|
||||
@ -93,7 +93,7 @@ static cl::alias TotalSizesShort("t", cl::desc("Short for --totals"),
|
||||
static cl::list<std::string>
|
||||
InputFilenames(cl::Positional, cl::desc("<input files>"), cl::ZeroOrMore);
|
||||
|
||||
bool HadError = false;
|
||||
static bool HadError = false;
|
||||
|
||||
static std::string ToolName;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user