gvn small fix

http://reviews.llvm.org/D12928

llvm-svn: 247935
This commit is contained in:
Piotr Padlewski 2015-09-17 20:34:22 +00:00
parent 61116ddc7b
commit a4d43337d4
1 changed files with 1 additions and 3 deletions

View File

@ -1939,10 +1939,8 @@ bool GVN::processLoad(LoadInst *L) {
++NumGVNLoad;
return true;
}
}
// If the value isn't available, don't do anything!
if (Dep.isClobber()) {
// If the value isn't available, don't do anything!
DEBUG(
// fast print dep, using operator<< on instruction is too slow.
dbgs() << "GVN: load ";