[llvm] r352576 - Remove a redundant space from an error message; NFC

George Burgess IV via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 29 16:28:56 PST 2019


Author: gbiv
Date: Tue Jan 29 16:28:56 2019
New Revision: 352576

URL: http://llvm.org/viewvc/llvm-project?rev=352576&view=rev
Log:
Remove a redundant space from an error message; NFC

Modified:
    llvm/trunk/lib/IR/Value.cpp

Modified: llvm/trunk/lib/IR/Value.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Value.cpp?rev=352576&r1=352575&r2=352576&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Value.cpp (original)
+++ llvm/trunk/lib/IR/Value.cpp Tue Jan 29 16:28:56 2019
@@ -930,7 +930,7 @@ void ValueHandleBase::ValueIsRAUWd(Value
                << Old->getName() << " to " << *New->getType() << " %"
                << New->getName() << "\n";
         llvm_unreachable(
-            "A weak tracking value handle still pointed to the  old value!\n");
+            "A weak tracking value handle still pointed to the old value!\n");
       default:
         break;
       }




More information about the llvm-commits mailing list