diff options
Diffstat (limited to 'test/MC/AArch64/neon-scalar-reduce-pairwise.s')
-rw-r--r-- | test/MC/AArch64/neon-scalar-reduce-pairwise.s | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/MC/AArch64/neon-scalar-reduce-pairwise.s b/test/MC/AArch64/neon-scalar-reduce-pairwise.s index 403a940ec2f2..dae61d0f0f32 100644 --- a/test/MC/AArch64/neon-scalar-reduce-pairwise.s +++ b/test/MC/AArch64/neon-scalar-reduce-pairwise.s @@ -1,4 +1,4 @@ -// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon -show-encoding < %s | FileCheck %s +// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon,+fullfp16 -show-encoding < %s | FileCheck %s //---------------------------------------------------------------------- // Scalar Reduce Add Pairwise (Integer) @@ -10,7 +10,12 @@ //---------------------------------------------------------------------- // Scalar Reduce Add Pairwise (Floating Point) //---------------------------------------------------------------------- + faddp h18, v3.2h + faddp h18, v3.2H + faddp s19, v2.2s faddp d20, v1.2d +// CHECK: faddp h18, v3.2h // encoding: [0x72,0xd8,0x30,0x5e] +// CHECK: faddp s19, v2.2s // encoding: [0x53,0xd8,0x30,0x7e] // CHECK: faddp d20, v1.2d // encoding: [0x34,0xd8,0x70,0x7e] |