diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-27 21:46:03 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-27 21:46:03 +0000 |
commit | 1c45acf5107c92c654da312147e352b8f5ffade9 (patch) | |
tree | 6baa3164b2efc9565f704cf50e9a3b6a5dd707e1 | |
parent | 0f9d95254291418a548d1341db540b5d5c11e8f4 (diff) | |
download | external_llvm-1c45acf5107c92c654da312147e352b8f5ffade9.zip external_llvm-1c45acf5107c92c654da312147e352b8f5ffade9.tar.gz external_llvm-1c45acf5107c92c654da312147e352b8f5ffade9.tar.bz2 |
Fix obvious typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102467 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 4a7df32..245a20e 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -4545,11 +4545,11 @@ def : Pat<(i8 (trunc GR16:$src)), // h-register tricks def : Pat<(i8 (trunc (srl_su GR16:$src, (i8 8)))), - (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)), + (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR16:$src, GR16_ABCD)), x86_subreg_8bit_hi)>, Requires<[In32BitMode]>; def : Pat<(i8 (trunc (srl_su GR32:$src, (i8 8)))), - (EXTRACT_SUBREG (i16 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)), + (EXTRACT_SUBREG (i32 (COPY_TO_REGCLASS GR32:$src, GR32_ABCD)), x86_subreg_8bit_hi)>, Requires<[In32BitMode]>; def : Pat<(srl GR16:$src, (i8 8)), |