[llvm-commits] CVS: llvm/lib/Target/X86/InstSelectSimple.cpp
Misha Brukman
brukman at cs.uiuc.edu
Tue Apr 22 12:55:01 PDT 2003
Changes in directory llvm/lib/Target/X86:
InstSelectSimple.cpp updated: 1.86 -> 1.87
---
Log message:
It's "necessary" to spell "necessarily" correctly.
---
Diffs of the changes:
Index: llvm/lib/Target/X86/InstSelectSimple.cpp
diff -u llvm/lib/Target/X86/InstSelectSimple.cpp:1.86 llvm/lib/Target/X86/InstSelectSimple.cpp:1.87
--- llvm/lib/Target/X86/InstSelectSimple.cpp:1.86 Mon Apr 21 16:33:44 2003
+++ llvm/lib/Target/X86/InstSelectSimple.cpp Tue Apr 22 12:54:23 2003
@@ -1209,7 +1209,7 @@
// Emit the byte swap instruction...
switch (Class) {
case cByte:
- // No byteswap neccesary for 8 bit value...
+ // No byteswap necessary for 8 bit value...
BuildMI(BB, X86::MOVrr8, 1, DestReg).addReg(SrcReg);
break;
case cInt:
@@ -1219,7 +1219,7 @@
case cShort:
// For 16 bit we have to use an xchg instruction, because there is no
- // 16-bit bswap. XCHG is neccesarily not in SSA form, so we force things
+ // 16-bit bswap. XCHG is necessarily not in SSA form, so we force things
// into AX to do the xchg.
//
BuildMI(BB, X86::MOVrr16, 1, X86::AX).addReg(SrcReg);
More information about the llvm-commits
mailing list