mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Remove some instructions that existed to provide aliases to the assembler. Can be done with InstAlias instead. Unfortunately, this was causing printer to use 'vmovq' or 'vmovd' based on what was parsed. To cleanup the inconsistencies convert all 'vmovd' with 64-bit registers to 'vmovq', but provide an alias so that 'vmovd' will still parse.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -549,9 +549,7 @@ RecognizableInstr::filter_ret RecognizableInstr::filter() const {
|
||||
Name == "MMX_MOVD64rrv164" ||
|
||||
Name == "MOV64ri64i32" ||
|
||||
Name == "VMASKMOVDQU64" ||
|
||||
Name == "VEXTRACTPSrr64" ||
|
||||
Name == "VMOVQd64rr" ||
|
||||
Name == "VMOVQs64rr")
|
||||
Name == "VEXTRACTPSrr64")
|
||||
return FILTER_WEAK;
|
||||
|
||||
// XACQUIRE and XRELEASE reuse REPNE and REP respectively.
|
||||
|
Reference in New Issue
Block a user