forked from OSchip/llvm-project
parent
c7e0d9c216
commit
d59b23a5ae
|
@ -233,7 +233,7 @@ namespace opts {
|
|||
cl::alias SectionGroupsShort("g", cl::desc("Alias for -elf-sections-groups"),
|
||||
cl::aliasopt(SectionGroups));
|
||||
|
||||
cl::opt<OutpytStyleTy>
|
||||
cl::opt<OutputStyleTy>
|
||||
Output("elf-output-style", cl::desc("Specify ELF dump style"),
|
||||
cl::values(clEnumVal(LLVM, "LLVM default style"),
|
||||
clEnumVal(GNU, "GNU readelf style"), clEnumValEnd),
|
||||
|
|
|
@ -48,8 +48,8 @@ namespace opts {
|
|||
extern llvm::cl::opt<bool> CodeViewSubsectionBytes;
|
||||
extern llvm::cl::opt<bool> ARMAttributes;
|
||||
extern llvm::cl::opt<bool> MipsPLTGOT;
|
||||
enum OutpytStyleTy { LLVM, GNU };
|
||||
extern llvm::cl::opt<OutpytStyleTy> Output;
|
||||
enum OutputStyleTy { LLVM, GNU };
|
||||
extern llvm::cl::opt<OutputStyleTy> Output;
|
||||
} // namespace opts
|
||||
|
||||
#define LLVM_READOBJ_ENUM_ENT(ns, enum) \
|
||||
|
|
Loading…
Reference in New Issue