1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[CodeExtractor] Remove unneded and commented out debugging stmts.

llvm-svn: 306966
This commit is contained in:
Davide Italiano 2017-07-02 00:07:18 +00:00
parent 87ac58f1e8
commit 578d5769ab

View File

@ -1116,12 +1116,6 @@ Function *CodeExtractor::extractCodeRegion() {
}
}
//cerr << "NEW FUNCTION: " << *newFunction;
// verifyFunction(*newFunction);
// cerr << "OLD FUNCTION: " << *oldFunction;
// verifyFunction(*oldFunction);
DEBUG(if (verifyFunction(*newFunction))
report_fatal_error("verifyFunction failed!"));
return newFunction;