diff options
| author | Martin Storsjo <martin@martin.st> | 2019-05-20 19:53:28 +0000 |
|---|---|---|
| committer | Martin Storsjo <martin@martin.st> | 2019-05-20 19:53:28 +0000 |
| commit | 4ed18e5ef5212b208d8707c08cc3c7f16ce2738d (patch) | |
| tree | 6ffb5b39b16348080d8768a6ff2d910e3376a115 /llvm/lib/Target | |
| parent | 80efcdcdf882429e173a0da28f5edf8987dd1b08 (diff) | |
| download | bcm5719-llvm-4ed18e5ef5212b208d8707c08cc3c7f16ce2738d.tar.gz bcm5719-llvm-4ed18e5ef5212b208d8707c08cc3c7f16ce2738d.zip | |
[AArch64] Handle lowering lround on windows, where long is 32 bit
Differential Revision: https://reviews.llvm.org/D62108
llvm-svn: 361192
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/AArch64/AArch64InstrInfo.td | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64InstrInfo.td b/llvm/lib/Target/AArch64/AArch64InstrInfo.td index bf6be6761a9..f426da4f1c8 100644 --- a/llvm/lib/Target/AArch64/AArch64InstrInfo.td +++ b/llvm/lib/Target/AArch64/AArch64InstrInfo.td @@ -3083,6 +3083,10 @@ defm : FPToIntegerPats<fp_to_uint, ftrunc, "FCVTZU">; defm : FPToIntegerPats<fp_to_sint, fround, "FCVTAS">; defm : FPToIntegerPats<fp_to_uint, fround, "FCVTAU">; +def : Pat<(i32 (lround f32:$Rn)), + (!cast<Instruction>(FCVTASUWSr) f32:$Rn)>; +def : Pat<(i32 (lround f64:$Rn)), + (!cast<Instruction>(FCVTASUWDr) f64:$Rn)>; def : Pat<(i64 (lround f32:$Rn)), (!cast<Instruction>(FCVTASUXSr) f32:$Rn)>; def : Pat<(i64 (lround f64:$Rn)), |

