forked from OSchip/llvm-project
[NFC][llvm-objcopy] Fix redundant config checks.
The check for unsupported options checks some configs twice in a || expression. Fixes PR47107.
This commit is contained in:
parent
0dc5e0cd39
commit
d2c18b5983
|
@ -311,8 +311,7 @@ static Error handleArgs(const CopyConfig &Config, Object &Obj) {
|
|||
Config.ExtractDWO || Config.LocalizeHidden || Config.PreserveDates ||
|
||||
Config.StripAllGNU || Config.StripDWO || Config.StripNonAlloc ||
|
||||
Config.StripSections || Config.Weaken || Config.DecompressDebugSections ||
|
||||
Config.StripNonAlloc || Config.StripSections || Config.StripUnneeded ||
|
||||
Config.DiscardMode == DiscardType::Locals ||
|
||||
Config.StripUnneeded || Config.DiscardMode == DiscardType::Locals ||
|
||||
!Config.SymbolsToAdd.empty() || Config.EntryExpr) {
|
||||
return createStringError(llvm::errc::invalid_argument,
|
||||
"option not supported by llvm-objcopy for MachO");
|
||||
|
|
Loading…
Reference in New Issue