diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-09-16 21:09:17 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-09-16 21:09:17 +0000 |
commit | 4e0a55d0d129bc56c4b961288d4f63538b3ef824 (patch) | |
tree | 1f90591896dcdfd522c615395830163468e6e29f /docs/CommandGuide/llvm-extract.pod | |
parent | 947a24cd64f9471511629e9db84bac2c334c73c2 (diff) |
Add -rfunc and -rglob options to llvm-extract to support regular
expression matching.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139945 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide/llvm-extract.pod')
-rw-r--r-- | docs/CommandGuide/llvm-extract.pod | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/CommandGuide/llvm-extract.pod b/docs/CommandGuide/llvm-extract.pod index 797e79d128..67f00f0b86 100644 --- a/docs/CommandGuide/llvm-extract.pod +++ b/docs/CommandGuide/llvm-extract.pod @@ -37,11 +37,23 @@ B<llvm-extract> will write raw bitcode regardless of the output device. Extract the function named I<function-name> from the LLVM bitcode. May be specified multiple times to extract multiple functions at once. +=item B<--rfunc> I<function-regular-expr> + +Extract the function(s) matching I<function-regular-expr> from the LLVM bitcode. +All functions matching the regular expression will be extracted. May be +specified multiple times. + =item B<--glob> I<global-name> Extract the global variable named I<global-name> from the LLVM bitcode. May be specified multiple times to extract multiple global variables at once. +=item B<--rglob> I<glob-regular-expr> + +Extract the global variable(s) matching I<global-regular-expr> from the LLVM +bitcode. All global variables matching the regular expression will be extracted. +May be specified multiple times. + =item B<-help> Print a summary of command line options. |