From f0d3786945e1bb149e0bb5b46437fe8b93140738 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Fri, 16 Sep 2011 21:09:17 +0000 Subject: Add -rfunc and -rglob options to llvm-extract to support regular expression matching. llvm-svn: 139945 --- llvm/docs/CommandGuide/llvm-extract.pod | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'llvm/docs/CommandGuide/llvm-extract.pod') diff --git a/llvm/docs/CommandGuide/llvm-extract.pod b/llvm/docs/CommandGuide/llvm-extract.pod index 797e79d128d..67f00f0b861 100644 --- a/llvm/docs/CommandGuide/llvm-extract.pod +++ b/llvm/docs/CommandGuide/llvm-extract.pod @@ -37,11 +37,23 @@ B will write raw bitcode regardless of the output device. Extract the function named I from the LLVM bitcode. May be specified multiple times to extract multiple functions at once. +=item B<--rfunc> I + +Extract the function(s) matching I from the LLVM bitcode. +All functions matching the regular expression will be extracted. May be +specified multiple times. + =item B<--glob> I Extract the global variable named I from the LLVM bitcode. May be specified multiple times to extract multiple global variables at once. +=item B<--rglob> I + +Extract the global variable(s) matching I 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. -- cgit v1.2.3