[llvm] r344973 - X86: fix a comment copy-paste issue (NFC)

Saleem Abdulrasool via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 22 16:34:24 PDT 2018


Author: compnerd
Date: Mon Oct 22 16:34:24 2018
New Revision: 344973

URL: http://llvm.org/viewvc/llvm-project?rev=344973&view=rev
Log:
X86: fix a comment copy-paste issue (NFC)

The comment was copy-pasted but not updated.  NFC.

Modified:
    llvm/trunk/lib/Target/X86/X86MCInstLower.cpp

Modified: llvm/trunk/lib/Target/X86/X86MCInstLower.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86MCInstLower.cpp?rev=344973&r1=344972&r2=344973&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86MCInstLower.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86MCInstLower.cpp Mon Oct 22 16:34:24 2018
@@ -527,7 +527,7 @@ ReSimplify:
   }
 
   case X86::CLEANUPRET: {
-    // Replace CATCHRET with the appropriate RET.
+    // Replace CLEANUPRET with the appropriate RET.
     OutMI = MCInst();
     OutMI.setOpcode(getRetOpcode(AsmPrinter.getSubtarget()));
     break;




More information about the llvm-commits mailing list