diff options
author | Chris Lattner <sabre@nondot.org> | 2005-07-30 00:43:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-07-30 00:43:00 +0000 |
commit | a88da08c6e7f8f01d0673c37e3a9479f7bc2065c (patch) | |
tree | 88e0ba2c2ed5b72f4494ed764dbb04b50e23f849 | |
parent | f84d5ab5df5900dcaf90df8d83c16b6cea22f087 (diff) |
fix a typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22561 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelPattern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelPattern.cpp b/lib/Target/X86/X86ISelPattern.cpp index eef5783989..5a23f71b19 100644 --- a/lib/Target/X86/X86ISelPattern.cpp +++ b/lib/Target/X86/X86ISelPattern.cpp @@ -4336,7 +4336,7 @@ void ISel::Select(SDOperand N) { addFrameReference(BuildMI(BB, X86::MOV16rm, 4, OldCW), CWFrameIdx); // Set the high part to be round to zero... - addFrameReference(BuildMI(BB, X86::MOV16mi, 5), CWFrameIdx).addImm(0xB7F); + addFrameReference(BuildMI(BB, X86::MOV16mi, 5), CWFrameIdx).addImm(0xC7F); // Reload the modified control word now... addFrameReference(BuildMI(BB, X86::FLDCW16m, 4), CWFrameIdx); |