diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-22 04:09:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-22 04:09:26 +0000 |
commit | b4e8aabba764bcbaf4be1296ba9b7e437f98adb7 (patch) | |
tree | 3fdaffe84a34760a0d078e42761210951f7dafb4 /lib | |
parent | 6b617a7213e159097a7e5c7216ed9b04921de4e1 (diff) | |
download | external_llvm-b4e8aabba764bcbaf4be1296ba9b7e437f98adb7.zip external_llvm-b4e8aabba764bcbaf4be1296ba9b7e437f98adb7.tar.gz external_llvm-b4e8aabba764bcbaf4be1296ba9b7e437f98adb7.tar.bz2 |
Fix a typo in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96778 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.cpp b/lib/Target/X86/X86InstrInfo.cpp index a0d0312..baf6b63 100644 --- a/lib/Target/X86/X86InstrInfo.cpp +++ b/lib/Target/X86/X86InstrInfo.cpp @@ -1860,7 +1860,7 @@ bool X86InstrInfo::copyRegToReg(MachineBasicBlock &MBB, CommonRC = SrcRC; else if (!DestRC->hasSubClass(SrcRC)) { // Neither of GR64_NOREX or GR64_NOSP is a superclass of the other, - // but we want to copy then as GR64. Similarly, for GR32_NOREX and + // but we want to copy them as GR64. Similarly, for GR32_NOREX and // GR32_NOSP, copy as GR32. if (SrcRC->hasSuperClass(&X86::GR64RegClass) && DestRC->hasSuperClass(&X86::GR64RegClass)) |