1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix "Statistics are disabled"

There is no -DLLVM_ENABLE_STATS, only
-DLLVM_FORCE_ENABLE_STATS.
It was renamed by 6cf299cf01e4a83844126f7faf17cbeb78e88da9
This commit is contained in:
Vitaly Buka 2020-06-03 15:30:03 -07:00
parent fe86d4b126
commit b5bcb1e91b

View File

@ -246,7 +246,7 @@ void llvm::PrintStatistics() {
// Get the stream to write to.
std::unique_ptr<raw_ostream> OutStream = CreateInfoOutputFile();
(*OutStream) << "Statistics are disabled. "
<< "Build with asserts or with -DLLVM_ENABLE_STATS\n";
<< "Build with asserts or with -DLLVM_FORCE_ENABLE_STATS\n";
}
#endif
}