diff options
Diffstat (limited to 'llvm/tools/lli/lli.cpp')
| -rw-r--r-- | llvm/tools/lli/lli.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/tools/lli/lli.cpp b/llvm/tools/lli/lli.cpp index 00ae52d35e2..2bbd2287734 100644 --- a/llvm/tools/lli/lli.cpp +++ b/llvm/tools/lli/lli.cpp @@ -91,8 +91,7 @@ namespace { "Orc-based MCJIT replacement"), clEnumValN(JITKind::OrcLazy, "orc-lazy", - "Orc-based lazy JIT."), - clEnumValEnd)); + "Orc-based lazy JIT."))); // The MCJIT supports building for a target address space separate from // the JIT compilation process. Use a forked process and a copying @@ -194,8 +193,7 @@ namespace { clEnumValN(Reloc::PIC_, "pic", "Fully relocatable, position independent code"), clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic", - "Relocatable external references, non-relocatable code"), - clEnumValEnd)); + "Relocatable external references, non-relocatable code"))); cl::opt<llvm::CodeModel::Model> CMModel("code-model", @@ -210,8 +208,7 @@ namespace { clEnumValN(CodeModel::Medium, "medium", "Medium code model"), clEnumValN(CodeModel::Large, "large", - "Large code model"), - clEnumValEnd)); + "Large code model"))); cl::opt<bool> GenerateSoftFloatCalls("soft-float", @@ -228,8 +225,7 @@ namespace { clEnumValN(FloatABI::Soft, "soft", "Soft float ABI (implied by -soft-float)"), clEnumValN(FloatABI::Hard, "hard", - "Hard float ABI (uses FP registers)"), - clEnumValEnd)); + "Hard float ABI (uses FP registers)"))); ExitOnError ExitOnErr; } |

