[PATCH] D61229: [CommandLine] Don't allow unlimitted dashes for options. Part 1 or 5
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 29 11:32:21 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL359480: [CommandLine] Don't allow unlimitted dashes for options. Part 1 or 5 (authored by dhinton, committed by ).
Herald added a subscriber: kristina.
Changed prior to commit:
https://reviews.llvm.org/D61229?vs=196979&id=197152#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61229/new/
https://reviews.llvm.org/D61229
Files:
llvm/trunk/lib/Support/CommandLine.cpp
llvm/trunk/test/DebugInfo/X86/array.ll
llvm/trunk/test/DebugInfo/dwarfdump-64-bit-dwarf.test
Index: llvm/trunk/test/DebugInfo/X86/array.ll
===================================================================
--- llvm/trunk/test/DebugInfo/X86/array.ll
+++ llvm/trunk/test/DebugInfo/X86/array.ll
@@ -13,7 +13,7 @@
; }
;
; RUN: llc -filetype=asm %s -o - | FileCheck %s
-; RUN: llc -filetype=obj %s -o - | llvm-dwarfdump -v - ---debug-info | FileCheck %s --check-prefix=DWARF
+; RUN: llc -filetype=obj %s -o - | llvm-dwarfdump -v - --debug-info | FileCheck %s --check-prefix=DWARF
; CHECK-LABEL: _main:
; CHECK: movaps {{.*}}, (%rsp)
Index: llvm/trunk/test/DebugInfo/dwarfdump-64-bit-dwarf.test
===================================================================
--- llvm/trunk/test/DebugInfo/dwarfdump-64-bit-dwarf.test
+++ llvm/trunk/test/DebugInfo/dwarfdump-64-bit-dwarf.test
@@ -1,5 +1,5 @@
RUN: llvm-dwarfdump %p/Inputs/dwarfdump.elf-mips64-64-bit-dwarf \
-RUN: ---debug-line | FileCheck %s
+RUN: --debug-line | FileCheck %s
# FIXME: llvm-dwarfdump's support for 64-bit dwarf is currently limited to
# .debug_line.
Index: llvm/trunk/lib/Support/CommandLine.cpp
===================================================================
--- llvm/trunk/lib/Support/CommandLine.cpp
+++ llvm/trunk/lib/Support/CommandLine.cpp
@@ -1306,8 +1306,8 @@
// option is another positional argument. If so, treat it as an argument,
// otherwise feed it to the eating positional.
ArgName = StringRef(argv[i] + 1);
- // Eat leading dashes.
- while (!ArgName.empty() && ArgName[0] == '-')
+ // Eat second dash.
+ if (!ArgName.empty() && ArgName[0] == '-')
ArgName = ArgName.substr(1);
Handler = LookupOption(*ChosenSubCommand, ArgName, Value);
@@ -1318,8 +1318,8 @@
} else { // We start with a '-', must be an argument.
ArgName = StringRef(argv[i] + 1);
- // Eat leading dashes.
- while (!ArgName.empty() && ArgName[0] == '-')
+ // Eat second dash.
+ if (!ArgName.empty() && ArgName[0] == '-')
ArgName = ArgName.substr(1);
Handler = LookupOption(*ChosenSubCommand, ArgName, Value);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61229.197152.patch
Type: text/x-patch
Size: 2093 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190429/94cea72f/attachment.bin>
More information about the llvm-commits
mailing list