1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

[SCCP] Debug diagnostic goes under DEBUG(). NFCI.

llvm-svn: 289519
This commit is contained in:
Davide Italiano 2016-12-13 05:56:04 +00:00
parent 7b63330234
commit 9160c0c2e4

View File

@ -549,7 +549,7 @@ private:
void visitInstruction(Instruction &I) {
// If a new instruction is added to LLVM that we don't handle.
dbgs() << "SCCP: Don't know how to handle: " << I << '\n';
DEBUG(dbgs() << "SCCP: Don't know how to handle: " << I << '\n');
markAnythingOverdefined(&I); // Just in case
}
};