Fix typo. NFC.

llvm-svn: 262405
This commit is contained in:
Tim Northover 2016-03-01 21:45:22 +00:00
parent c7e0d9c216
commit d59b23a5ae
2 changed files with 3 additions and 3 deletions

View File

@ -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),

View File

@ -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) \