mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-29 22:50:55 +00:00
Made detailed output the default and changed -details option to -nodetails.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14114 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00c28a7481
commit
465ba87c92
@ -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
Block a user