[llvm] r350075 - [WebAssembly] Fix typos in comments in RegStackify (NFC)

Heejin Ahn via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 26 14:27:47 PST 2018


Author: aheejin
Date: Wed Dec 26 14:27:46 2018
New Revision: 350075

URL: http://llvm.org/viewvc/llvm-project?rev=350075&view=rev
Log:
[WebAssembly] Fix typos in comments in RegStackify (NFC)

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp?rev=350075&r1=350074&r2=350075&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp Wed Dec 26 14:27:46 2018
@@ -755,9 +755,9 @@ public:
 /// tried for the current instruction and didn't work.
 class CommutingState {
   /// There are effectively three states: the initial state where we haven't
-  /// started commuting anything and we don't know anything yet, the tenative
+  /// started commuting anything and we don't know anything yet, the tentative
   /// state where we've commuted the operands of the current instruction and are
-  /// revisting it, and the declined state where we've reverted the operands
+  /// revisiting it, and the declined state where we've reverted the operands
   /// back to their original order and will no longer commute it further.
   bool TentativelyCommuting;
   bool Declined;




More information about the llvm-commits mailing list