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 | 7640cca2594c73abfc43bde53bc6c90f0a728966 (patch) | |
| tree | 1c1b45ccc4ba9662c5a900f518077683b4a29b7b | |
| parent | 6859a1b961d808484cd77473ed6e1eceef193c8d (diff) | |
| download | bcm5719-llvm-7640cca2594c73abfc43bde53bc6c90f0a728966.tar.gz bcm5719-llvm-7640cca2594c73abfc43bde53bc6c90f0a728966.zip  | |
Make all help strings start in upper case.
llvm-svn: 51788
| -rw-r--r-- | llvm/tools/llvmc2/Tools.td | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/tools/llvmc2/Tools.td b/llvm/tools/llvmc2/Tools.td index 852d7fea062..4c04f3c4c2f 100644 --- a/llvm/tools/llvmc2/Tools.td +++ b/llvm/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++  | 

