mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-01 15:21:00 +00:00
[llvm-nm] Transform a switch() statement in a pair of if(s).
This is more uniform wrt what other tools do and makes the code a little bit more readable. llvm-svn: 259937
This commit is contained in:
parent
8e6ffab913
commit
b7786a9541
@ -1267,15 +1267,10 @@ int main(int argc, char **argv) {
|
||||
PrintAddress = false;
|
||||
if (OutputFormat == sysv || SizeSort)
|
||||
PrintSize = true;
|
||||
|
||||
switch (InputFilenames.size()) {
|
||||
case 0:
|
||||
if (InputFilenames.size() == 0)
|
||||
InputFilenames.push_back("a.out");
|
||||
case 1:
|
||||
break;
|
||||
default:
|
||||
if (InputFilenames.size() > 1)
|
||||
MultipleFiles = true;
|
||||
}
|
||||
|
||||
for (unsigned i = 0; i < ArchFlags.size(); ++i) {
|
||||
if (ArchFlags[i] == "all") {
|
||||
|
Loading…
Reference in New Issue
Block a user