forked from OSchip/llvm-project
Made detailed output the default and changed -details option to -nodetails.
llvm-svn: 14114
This commit is contained in:
parent
8e5de9cd75
commit
1080b373a2
|
@ -37,7 +37,7 @@ using namespace llvm;
|
|||
static cl::opt<std::string>
|
||||
InputFilename(cl::Positional, cl::desc("<input bytecode>"), cl::init("-"));
|
||||
|
||||
static cl::opt<bool> Detailed ("details", cl::desc("Detailed output"));
|
||||
static cl::opt<bool> Detailed ("nodetails", cl::desc("Skip detailed output"));
|
||||
static cl::opt<bool> Dump ("dump", cl::desc("Detailed output"));
|
||||
|
||||
int
|
||||
|
@ -55,7 +55,7 @@ main(int argc, char **argv)
|
|||
|
||||
/// Determine what to generate
|
||||
bca.dumpBytecode = Dump;
|
||||
bca.detailedResults = Detailed;
|
||||
bca.detailedResults = !Detailed;
|
||||
|
||||
/// Analyze the bytecode file
|
||||
AnalyzeBytecodeFile(InputFilename, bca, &ErrorMessage);
|
||||
|
|
Loading…
Reference in New Issue