X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fllvmc2%2FTools.td;h=4c04f3c4c2f3aae9fe9aa7ad53d4488a1cfef8ff;hb=6fa1c051dc515b6fd1f9a26ac12fed985469bff5;hp=852d7fea062c80f988c384c7ee4cf5c5b2280629;hpb=74a0c28fba95a307454146d7018f9671948b3102;p=oota-llvm.git diff --git a/tools/llvmc2/Tools.td b/tools/llvmc2/Tools.td index 852d7fea062..4c04f3c4c2f 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++