mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Print a newline after the Args: line so that unrelated errs() output doesn't
end up on the same line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90473 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -778,9 +778,10 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
|
|||||||
free(*i);
|
free(*i);
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG(errs() << "\nArgs: ";
|
DEBUG(errs() << "Args: ";
|
||||||
for (int i = 0; i < argc; ++i)
|
for (int i = 0; i < argc; ++i)
|
||||||
errs() << argv[i] << ' ';
|
errs() << argv[i] << ' ';
|
||||||
|
errs() << '\n';
|
||||||
);
|
);
|
||||||
|
|
||||||
// If we had an error processing our arguments, don't let the program execute
|
// If we had an error processing our arguments, don't let the program execute
|
||||||
|
Reference in New Issue
Block a user