Skip to content

Commit 4a8afeb

Browse files
committed
[format] \t => ' '
Summary: 1. \t => ' ' 2. test commit access Reviewers: Higuoxing, liangdzou Reviewed By: Higuoxing, liangdzou Subscribers: kristina, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59243 llvm-svn: 355924
1 parent 1f066a7 commit 4a8afeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/NewGVN.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3502,7 +3502,7 @@ bool NewGVN::runGVN() {
35023502
"BB containing ToErase deleted unexpectedly!");
35033503
ToErase->eraseFromParent();
35043504
}
3505-
Changed |= !InstructionsToErase.empty();
3505+
Changed |= !InstructionsToErase.empty();
35063506

35073507
// Delete all unreachable blocks.
35083508
auto UnreachableBlockPred = [&](const BasicBlock &BB) {

0 commit comments

Comments
 (0)