Skip to content

Commit

Permalink
Fix encoding for VEXTdf.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132486 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
tlattner committed Jun 2, 2011
1 parent 70d893e commit 201cfcd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/Target/ARM/ARMInstrNEON.td
Original file line number Diff line number Diff line change
Expand Up @@ -4703,8 +4703,9 @@ def VEXTd32 : VEXTd<"vext", "32", v2i32> {
let Inst{9-8} = 0b00;
}
def VEXTdf : VEXTd<"vext", "32", v2f32> {
let Inst{11} = index{0};
let Inst{10-8} = 0b000;
let Inst{11-10} = index{1-0};
let Inst{9-8} = 0b00;

}

def VEXTq8 : VEXTq<"vext", "8", v16i8> {
Expand Down

0 comments on commit 201cfcd

Please sign in to comment.