diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-30 21:14:10 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-30 21:14:10 +0000 |
commit | 856e106d2058c30c88b12ddf8aaeb29a4f9c109b (patch) | |
tree | a08bfe7a5ee5d3458a34f073ec421b893b4e1084 /tools | |
parent | 15a17f548188726260c3a0eeb7a4588e2c1d6f2c (diff) | |
download | external_llvm-856e106d2058c30c88b12ddf8aaeb29a4f9c109b.zip external_llvm-856e106d2058c30c88b12ddf8aaeb29a4f9c109b.tar.gz external_llvm-856e106d2058c30c88b12ddf8aaeb29a4f9c109b.tar.bz2 |
Make all help strings start in upper case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc2/Tools.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/llvmc2/Tools.td b/tools/llvmc2/Tools.td index 852d7fe..4c04f3c 100644 --- a/tools/llvmc2/Tools.td +++ b/tools/llvmc2/Tools.td @@ -85,7 +85,7 @@ def llvm_gcc_assembler : Tool< (cmd_line "llvm-gcc -c -x assembler $INFILE -o $OUTFILE"), (switch_option "c", (stop_compilation), (help "Compile and assemble, but do not link")), - (prefix_list_option "Wa,", (unpack_values), (help "pass options to assembler")) + (prefix_list_option "Wa,", (unpack_values), (help "Pass options to assembler")) ]>; // Default linker @@ -95,9 +95,9 @@ def llvm_gcc_linker : Tool< (output_suffix "out"), (cmd_line "llvm-gcc $INFILE -o $OUTFILE"), (join), - (prefix_list_option "L", (forward), (help "add a directory to link path")), - (prefix_list_option "l", (forward), (help "search a library when linking")), - (prefix_list_option "Wl,", (unpack_values), (help "pass options to linker")) + (prefix_list_option "L", (forward), (help "Add a directory to link path")), + (prefix_list_option "l", (forward), (help "Search a library when linking")), + (prefix_list_option "Wl,", (unpack_values), (help "Pass options to linker")) ]>; // Alternative linker for C++ |