[PATCH] D59243: [format] \t => ' '

Liang ZOU via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 12 07:47:40 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL355924: [format] \t => '  ' (authored by liangdzou, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D59243?vs=190219&id=190256#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59243/new/

https://reviews.llvm.org/D59243

Files:
  llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp


Index: llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp
+++ llvm/trunk/lib/Transforms/Scalar/NewGVN.cpp
@@ -3502,7 +3502,7 @@
            "BB containing ToErase deleted unexpectedly!");
     ToErase->eraseFromParent();
   }
-	Changed |= !InstructionsToErase.empty();
+  Changed |= !InstructionsToErase.empty();
 
   // Delete all unreachable blocks.
   auto UnreachableBlockPred = [&](const BasicBlock &BB) {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D59243.190256.patch
Type: text/x-patch
Size: 520 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190312/f42c361b/attachment.bin>


More information about the llvm-commits mailing list