From: Andrew Lenharth Date: Fri, 7 Mar 2008 20:10:54 +0000 (+0000) Subject: only extract main if the user didn't specify anything to extract X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c77e4d1569ab66f735a9d508bfa46985f2046c60;p=oota-llvm.git only extract main if the user didn't specify anything to extract git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48023 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-extract/llvm-extract.cpp b/tools/llvm-extract/llvm-extract.cpp index 1950f53972b..360630b41dc 100644 --- a/tools/llvm-extract/llvm-extract.cpp +++ b/tools/llvm-extract/llvm-extract.cpp @@ -81,7 +81,7 @@ int main(int argc, char **argv) { M.get()->getNamedGlobal(ExtractGlobal) : 0; // Figure out which function we should extract - if (!ExtractFunc.size()) ExtractFunc = "main"; + if (!ExtractFunc.size() && !ExtractGlobal.size()) ExtractFunc = "main"; Function *F = M.get()->getFunction(ExtractFunc); if (F == 0 && G == 0) {