From: Reid Spencer Date: Tue, 30 May 2006 21:19:29 +0000 (+0000) Subject: Add the new command line arguments. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a0b8515f303c17fbe4184a7d69d748065a26e384;p=oota-llvm.git Add the new command line arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28569 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandGuide/llvm2cpp.pod b/docs/CommandGuide/llvm2cpp.pod index 9d710d08af9..0dc30acd6c2 100644 --- a/docs/CommandGuide/llvm2cpp.pod +++ b/docs/CommandGuide/llvm2cpp.pod @@ -70,6 +70,22 @@ read from the standard input then the module name will be ''. This option overrides both these default actions and specifies that the module name used must be F. +=item B<-funcname> F + +Specify the name of the function to be generated. The generated code contains a +single function that produces the input module. By default its name is +I. The B<-funcname> option overrides this default and allows +you to control the name of the generated function. This is handy in conjunction +with the B<-fragment> option when you only want B to generate a +single function that produces the module. With both options, such generated code +could be I<#included> into another program. + +=item B<-fragment> + +This boolean option tells B to generate only a program fragment. By +deault B generates a full program. With this option specified, only a +single function that generates the input module will be generated. + =back =head1 EXIT STATUS