mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
indicate when a tool is a debug build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24374 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a560fb6a39
commit
d5bd52ca48
@ -941,7 +941,12 @@ public:
|
||||
void operator=(bool OptionWasSpecified) {
|
||||
if (OptionWasSpecified) {
|
||||
std::cerr << "Low Level Virtual Machine (" << PACKAGE_NAME << ") "
|
||||
<< PACKAGE_VERSION << " (see http://llvm.cs.uiuc.edu/)\n";
|
||||
<< PACKAGE_VERSION << " (see http://llvm.org/)";
|
||||
#ifndef NDEBUG
|
||||
std::cerr << " DEBUG BUILD\n";
|
||||
#else
|
||||
std::cerr << "\n";
|
||||
#endif
|
||||
getOpts().clear(); // Don't bother making option dtors remove from map.
|
||||
exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user