[llvm] r292460 - GlobalISel: Fix text wrapping in a comment. NFC

Justin Bogner via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 18 17:04:46 PST 2017


Author: bogner
Date: Wed Jan 18 19:04:46 2017
New Revision: 292460

URL: http://llvm.org/viewvc/llvm-project?rev=292460&view=rev
Log:
GlobalISel: Fix text wrapping in a comment. NFC

Modified:
    llvm/trunk/lib/CodeGen/GlobalISel/InstructionSelect.cpp

Modified: llvm/trunk/lib/CodeGen/GlobalISel/InstructionSelect.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/GlobalISel/InstructionSelect.cpp?rev=292460&r1=292459&r2=292460&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/GlobalISel/InstructionSelect.cpp (original)
+++ llvm/trunk/lib/CodeGen/GlobalISel/InstructionSelect.cpp Wed Jan 18 19:04:46 2017
@@ -118,8 +118,7 @@ bool InstructionSelect::runOnMachineFunc
       if (!ISel->select(MI)) {
         if (TPC.isGlobalISelAbortEnabled())
           // FIXME: It would be nice to dump all inserted instructions.  It's
-          // not
-          // obvious how, esp. considering select() can insert after MI.
+          // not obvious how, esp. considering select() can insert after MI.
           reportSelectionError(&MI, "Cannot select");
         Failed = true;
         break;




More information about the llvm-commits mailing list