mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
[X86][X87] Tag FP_TO_INT_IN_MEM pseudos with hasNoSchedulingInfo
We don't need scheduling info for pseudos llvm-svn: 319197
This commit is contained in:
parent
2f8e427cd6
commit
456966cb64
@ -73,8 +73,8 @@ def fpimmneg1 : FPImmLeaf<fAny, [{
|
||||
return Imm.isExactlyValue(-1.0);
|
||||
}]>;
|
||||
|
||||
// Some 'special' instructions
|
||||
let usesCustomInserter = 1 in { // Expanded after instruction selection.
|
||||
// Some 'special' instructions - expanded after instruction selection.
|
||||
let usesCustomInserter = 1, hasNoSchedulingInfo = 1 in {
|
||||
def FP32_TO_INT16_IN_MEM : PseudoI<(outs), (ins i16mem:$dst, RFP32:$src),
|
||||
[(X86fp_to_i16mem RFP32:$src, addr:$dst)]>;
|
||||
def FP32_TO_INT32_IN_MEM : PseudoI<(outs), (ins i32mem:$dst, RFP32:$src),
|
||||
|
Loading…
Reference in New Issue
Block a user