diff options
author | Craig Topper <craig.topper@intel.com> | 2018-04-28 06:02:39 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-04-28 06:02:39 +0000 |
commit | 8a6532ae84d499b91a22de291b10bb54ebd18a8b (patch) | |
tree | 26330692aa43161a34ec7d6a01d9d1abd3083a06 /llvm/test | |
parent | 303572f3df5191af793bbdd402f7eb7b1008ee68 (diff) | |
download | bcm5719-llvm-8a6532ae84d499b91a22de291b10bb54ebd18a8b.tar.gz bcm5719-llvm-8a6532ae84d499b91a22de291b10bb54ebd18a8b.zip |
[X86] Rename BNDMOV instructions and hide redundant instruction encoding from the assembler.
Favor the 0x1a encoding for register/register move to match gas.
The instructions used RM and MR in their name along with rr/rm/mr at the end. To make more consistent with other instructions remove the RM/MR and use rr/rm/mr/rr_REV.
Hide the _REV encoding from the assembler but leave it for the disassembler.
llvm-svn: 331101
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/MC/X86/mpx-encodings.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/MC/X86/mpx-encodings.s b/llvm/test/MC/X86/mpx-encodings.s index 3aaab2c54ec..6b98808e1b6 100644 --- a/llvm/test/MC/X86/mpx-encodings.s +++ b/llvm/test/MC/X86/mpx-encodings.s @@ -13,7 +13,7 @@ bndmk (%rax), %bnd0 bndmk 1024(%rax), %bnd1 // CHECK: bndmov %bnd2, %bnd1 -// ENCODING: encoding: [0x66,0x0f,0x1b,0xd1] +// ENCODING: encoding: [0x66,0x0f,0x1a,0xca] bndmov %bnd2, %bnd1 // CHECK: bndmov %bnd1, 1024(%r9) |