mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-15 10:39:47 +00:00
[X86] Fix FBLD and FBSTP
FBLD and FBSTP should receive TBYTE because it is defined as FBLD m80 FBSTP m80 Differential Revision: http://reviews.llvm.org/D11748 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245553 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8d1c57faee
commit
4ca59ab261
@ -311,8 +311,8 @@ def FNSTSWm : FPI<0xDD, MRM7m, (outs f32mem:$dst), (ins), "fnstsw\t$dst">;
|
||||
def FICOM16m : FPI<0xDE, MRM2m, (outs), (ins i16mem:$src), "ficom{s}\t$src">;
|
||||
def FICOMP16m: FPI<0xDE, MRM3m, (outs), (ins i16mem:$src), "ficomp{s}\t$src">;
|
||||
|
||||
def FBLDm : FPI<0xDF, MRM4m, (outs), (ins f32mem:$src), "fbld\t$src">;
|
||||
def FBSTPm : FPI<0xDF, MRM6m, (outs f32mem:$dst), (ins), "fbstp\t$dst">;
|
||||
def FBLDm : FPI<0xDF, MRM4m, (outs), (ins f80mem:$src), "fbld\t$src">;
|
||||
def FBSTPm : FPI<0xDF, MRM6m, (outs f80mem:$dst), (ins), "fbstp\t$dst">;
|
||||
|
||||
// Floating point cmovs.
|
||||
class FpIf32CMov<dag outs, dag ins, FPFormat fp, list<dag> pattern> :
|
||||
|
@ -714,3 +714,8 @@ vcomiss xmm0, DWORD PTR [eax]
|
||||
// CHECK: comiss (%eax), %xmm0
|
||||
// CHECK: vcomisd (%eax), %xmm0
|
||||
// CHECK: vcomiss (%eax), %xmm0
|
||||
|
||||
fbld tbyte ptr [eax]
|
||||
fbstp tbyte ptr [eax]
|
||||
// CHECK: fbld (%eax)
|
||||
// CHECK: fbstp (%eax)
|
||||
|
Loading…
x
Reference in New Issue
Block a user