summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetMachine.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-08-29 15:13:10 +0000
committerJim Laskey <jlaskey@mac.com>2006-08-29 15:13:10 +0000
commit82dc16c0a7157a9455dd2fa164c25a0d858e258d (patch)
treea9eec2aa5bb480400cee23086faa8b3a811c29cb /llvm/lib/Target/TargetMachine.cpp
parentc07feb14b0c0f02446cfa195879cf2fdffdd6cae (diff)
downloadbcm5719-llvm-82dc16c0a7157a9455dd2fa164c25a0d858e258d.tar.gz
bcm5719-llvm-82dc16c0a7157a9455dd2fa164c25a0d858e258d.zip
Tidy up options.
llvm-svn: 29953
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r--llvm/lib/Target/TargetMachine.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp
index d1ffaa70d7c..00679950d68 100644
--- a/llvm/lib/Target/TargetMachine.cpp
+++ b/llvm/lib/Target/TargetMachine.cpp
@@ -63,13 +63,13 @@ namespace {
cl::init(Reloc::Default),
cl::values(
clEnumValN(Reloc::Default, "default",
- "Target default relocation model"),
+ " Target default relocation model"),
clEnumValN(Reloc::Static, "static",
- "Non-relocatable code"),
+ " Non-relocatable code"),
clEnumValN(Reloc::PIC_, "pic",
- "Fully relocatable, position independent code"),
+ " Fully relocatable, position independent code"),
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
- "Relocatable external references, non-relocatable code"),
+ " Relocatable external references, non-relocatable code"),
clEnumValEnd));
cl::opt<llvm::CodeModel::Model, true>
DefCodeModel(
@@ -79,15 +79,15 @@ namespace {
cl::init(CodeModel::Default),
cl::values(
clEnumValN(CodeModel::Default, "default",
- "Target default code model"),
+ " Target default code model"),
clEnumValN(CodeModel::Small, "small",
- "Small code model"),
+ " Small code model"),
clEnumValN(CodeModel::Kernel, "kernel",
- "Kernel code model"),
+ " Kernel code model"),
clEnumValN(CodeModel::Medium, "medium",
- "Medium code model"),
+ " Medium code model"),
clEnumValN(CodeModel::Large, "large",
- "Large code model"),
+ " Large code model"),
clEnumValEnd));
}
OpenPOWER on IntegriCloud