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 | c1a545c3077c57075262ca921e554888b0f4e5b8 (patch) | |
tree | 8f0bb6c3ab72d98a3a03961305ea6808131e438b /llvm/lib | |
parent | 754e4a98011c2b88473ea35bfc20d831ae7871b1 (diff) | |
download | bcm5719-llvm-c1a545c3077c57075262ca921e554888b0f4e5b8.tar.gz bcm5719-llvm-c1a545c3077c57075262ca921e554888b0f4e5b8.zip |
Fix a typo in a comment.
llvm-svn: 96778
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp index a0d03124e83..baf6b63e5de 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.cpp +++ b/llvm/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)) |