mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Tidy up options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -63,13 +63,13 @@ namespace {
|
|||||||
cl::init(Reloc::Default),
|
cl::init(Reloc::Default),
|
||||||
cl::values(
|
cl::values(
|
||||||
clEnumValN(Reloc::Default, "default",
|
clEnumValN(Reloc::Default, "default",
|
||||||
"Target default relocation model"),
|
" Target default relocation model"),
|
||||||
clEnumValN(Reloc::Static, "static",
|
clEnumValN(Reloc::Static, "static",
|
||||||
"Non-relocatable code"),
|
" Non-relocatable code"),
|
||||||
clEnumValN(Reloc::PIC_, "pic",
|
clEnumValN(Reloc::PIC_, "pic",
|
||||||
"Fully relocatable, position independent code"),
|
" Fully relocatable, position independent code"),
|
||||||
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
||||||
"Relocatable external references, non-relocatable code"),
|
" Relocatable external references, non-relocatable code"),
|
||||||
clEnumValEnd));
|
clEnumValEnd));
|
||||||
cl::opt<llvm::CodeModel::Model, true>
|
cl::opt<llvm::CodeModel::Model, true>
|
||||||
DefCodeModel(
|
DefCodeModel(
|
||||||
@ -79,15 +79,15 @@ namespace {
|
|||||||
cl::init(CodeModel::Default),
|
cl::init(CodeModel::Default),
|
||||||
cl::values(
|
cl::values(
|
||||||
clEnumValN(CodeModel::Default, "default",
|
clEnumValN(CodeModel::Default, "default",
|
||||||
"Target default code model"),
|
" Target default code model"),
|
||||||
clEnumValN(CodeModel::Small, "small",
|
clEnumValN(CodeModel::Small, "small",
|
||||||
"Small code model"),
|
" Small code model"),
|
||||||
clEnumValN(CodeModel::Kernel, "kernel",
|
clEnumValN(CodeModel::Kernel, "kernel",
|
||||||
"Kernel code model"),
|
" Kernel code model"),
|
||||||
clEnumValN(CodeModel::Medium, "medium",
|
clEnumValN(CodeModel::Medium, "medium",
|
||||||
"Medium code model"),
|
" Medium code model"),
|
||||||
clEnumValN(CodeModel::Large, "large",
|
clEnumValN(CodeModel::Large, "large",
|
||||||
"Large code model"),
|
" Large code model"),
|
||||||
clEnumValEnd));
|
clEnumValEnd));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user