diff options
author | Tim Northover <tnorthover@apple.com> | 2015-07-14 17:07:29 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2015-07-14 17:07:29 +0000 |
commit | c962d4f28bf0003ca315fb8fe267c5ade537a520 (patch) | |
tree | 4f5c3df74ee5da345d11d52344fd9e8feafd7287 /llvm/test | |
parent | a0ecf07c0b57469b3301b96c71b2ab75c7aa3a5f (diff) | |
download | bcm5719-llvm-c962d4f28bf0003ca315fb8fe267c5ade537a520.tar.gz bcm5719-llvm-c962d4f28bf0003ca315fb8fe267c5ade537a520.zip |
AArch64: add rev64 alias for 64-bit rev instruction.
It could be useful to assembly programmers and makes the permitted variants a
little more uniform.
llvm-svn: 242164
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/MC/AArch64/basic-a64-instructions.s | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/test/MC/AArch64/basic-a64-instructions.s b/llvm/test/MC/AArch64/basic-a64-instructions.s index 5d33a4f933b..f8e49432145 100644 --- a/llvm/test/MC/AArch64/basic-a64-instructions.s +++ b/llvm/test/MC/AArch64/basic-a64-instructions.s @@ -1489,6 +1489,9 @@ _func: // CHECK: clz w24, wzr // encoding: [0xf8,0x13,0xc0,0x5a] // CHECK: rev x22, xzr // encoding: [0xf6,0x0f,0xc0,0xda] + rev64 x13, x12 +// CHECK: rev x13, x12 // encoding: [0x8d,0x0d,0xc0,0xda] + //------------------------------------------------------------------------------ // Data-processing (2 source) //------------------------------------------------------------------------------ |