[llvm-commits] [llvm] r166456 - /llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp

Julien Lerouge jlerouge at apple.com
Mon Oct 22 17:38:15 PDT 2012


Author: jlerouge
Date: Mon Oct 22 19:38:15 2012
New Revision: 166456

URL: http://llvm.org/viewvc/llvm-project?rev=166456&view=rev
Log:
Fix typo.

Modified:
    llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp

Modified: llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp?rev=166456&r1=166455&r2=166456&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/PromoteMemoryToRegister.cpp Mon Oct 22 19:38:15 2012
@@ -593,7 +593,7 @@
     EliminatedAPHI = false;
     
     // Iterating over NewPhiNodes is deterministic, so it is safe to try to
-    // simplify and RUAW them as we go.  If it was not, we could add uses to
+    // simplify and RAUW them as we go.  If it was not, we could add uses to
     // the values we replace with in a non deterministic order, thus creating
     // non deterministic def->use chains.
     for (DenseMap<std::pair<unsigned, unsigned>, PHINode*>::iterator I =





More information about the llvm-commits mailing list