mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
[A57FPLoadBalancing] Remove support for vector types
Vector MUL/MLAs have tied operands, which gives us extra constraints that we currently can't handle. Instead of silently doing the wrong thing, remove support to be readded later properly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217690 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b4fbcbc288
commit
ca332457ba
@ -73,8 +73,6 @@ static bool isMul(MachineInstr *MI) {
|
||||
case AArch64::FNMULSrr:
|
||||
case AArch64::FMULDrr:
|
||||
case AArch64::FNMULDrr:
|
||||
|
||||
case AArch64::FMULv2f32:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
@ -92,9 +90,6 @@ static bool isMla(MachineInstr *MI) {
|
||||
case AArch64::FMADDDrrr:
|
||||
case AArch64::FNMSUBDrrr:
|
||||
case AArch64::FNMADDDrrr:
|
||||
|
||||
case AArch64::FMLAv2f32:
|
||||
case AArch64::FMLSv2f32:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user