// RUN: llvm-mc -triple aarch64-none-linux-gnu -mattr=+neon -show-encoding < %s | FileCheck %s
// Check that the assembler can handle the documented syntax for AArch64
//------------------------------------------------------------------------------
// Integer shift left long (Signed)
//------------------------------------------------------------------------------
sshll v0.8h, v1.8b, sshll v0.4s, v1.4h, sshll v0.2d, v1.2s, sshll2 v0.8h, v1.16b, sshll2 v0.4s, v1.8h, sshll2 v0.2d, v1.4s,
// CHECK: sshll v0.8h, v1.8b, // CHECK: sshll v0.4s, v1.4h, // CHECK: sshll v0.2d, v1.2s, // CHECK: sshll2 v0.8h, v1.16b, // CHECK: sshll2 v0.4s, v1.8h, // CHECK: sshll2 v0.2d, v1.4s,
//------------------------------------------------------------------------------
// Integer shift left long (Unsigned)
//------------------------------------------------------------------------------
ushll v0.8h, v1.8b, ushll v0.4s, v1.4h, ushll v0.2d, v1.2s, ushll2 v0.8h, v1.16b, ushll2 v0.4s, v1.8h, ushll2 v0.2d, v1.4s,
// CHECK: ushll v0.8h, v1.8b, // CHECK: ushll v0.4s, v1.4h, // CHECK: ushll v0.2d, v1.2s, // CHECK: ushll2 v0.8h, v1.16b, // CHECK: ushll2 v0.4s, v1.8h, // CHECK: ushll2 v0.2d, v1.4s,