diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-12-08 01:02:26 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-12-08 01:02:26 +0000 |
commit | 517a013a4fb6ead3b395e05dfdc04a622931eb36 (patch) | |
tree | 6e35a7264222034e51ef949eb940b30da969c05e | |
parent | 2b8810c500973ce96e476cff49c023cff24a86fc (diff) |
Fix copy/past-o.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146120 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrNEON.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index cb82207e09..b63ecc386f 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -5357,9 +5357,9 @@ def : NEONInstAlias<"veor${p} $Vdn, $Vm", (VEORd DPR:$Vdn, DPR:$Vdn, DPR:$Vm, pred:$p)>; def : NEONInstAlias<"veor${p} $Vdn, $Vm", (VEORq QPR:$Vdn, QPR:$Vdn, QPR:$Vm, pred:$p)>; -def : NEONInstAlias<"vand${p} $Vdn, $Vm", +def : NEONInstAlias<"vorr${p} $Vdn, $Vm", (VORRd DPR:$Vdn, DPR:$Vdn, DPR:$Vm, pred:$p)>; -def : NEONInstAlias<"vand${p} $Vdn, $Vm", +def : NEONInstAlias<"vorr${p} $Vdn, $Vm", (VORRq QPR:$Vdn, QPR:$Vdn, QPR:$Vm, pred:$p)>; defm : VFPDTAnyInstAlias<"vand${p}", "$Vdn, $Vm", |