[llvm] 110e171 - [X86] X86MCInstLower.cpp - fix spelling mistake

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 18 07:44:38 PST 2024


Author: Simon Pilgrim
Date: 2024-01-18T15:44:27Z
New Revision: 110e1717b31e2ab7344457110c2e145ccf23f03e

URL: https://github.com/llvm/llvm-project/commit/110e1717b31e2ab7344457110c2e145ccf23f03e
DIFF: https://github.com/llvm/llvm-project/commit/110e1717b31e2ab7344457110c2e145ccf23f03e.diff

LOG: [X86] X86MCInstLower.cpp - fix spelling mistake

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/X86/X86MCInstLower.cpp b/llvm/lib/Target/X86/X86MCInstLower.cpp
index 2d5ccbfdfc765f..048902681103bb 100644
--- a/llvm/lib/Target/X86/X86MCInstLower.cpp
+++ b/llvm/lib/Target/X86/X86MCInstLower.cpp
@@ -1501,7 +1501,7 @@ static void printConstant(const APInt &Val, raw_ostream &CS) {
 
 static void printConstant(const APFloat &Flt, raw_ostream &CS) {
   SmallString<32> Str;
-  // Force scientific notation to distinquish from integers.
+  // Force scientific notation to distinguish from integers.
   Flt.toString(Str, 0, 0);
   CS << Str;
 }


        


More information about the llvm-commits mailing list