mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
b4f08df47a
This patch resubmits the SVE ZIP1/ZIP2 patch series consisting of of r320992, r320986, r320973, and r320970 by reverting https://reviews.llvm.org/rL321024. The issue that caused r321024 has been addressed in https://reviews.llvm.org/rL321158, so this patch-series should be safe to resubmit. llvm-svn: 321163
10 lines
214 B
ArmAsm
10 lines
214 B
ArmAsm
// RUN: llvm-mc -triple=aarch64-none-linux-gnu -mattr=+sve -show-encoding < %s 2>&1 | FileCheck %s
|
|
|
|
foo:
|
|
// CHECK-NOT: error:
|
|
pbar .req p1
|
|
|
|
// CHECK: add z0.s, z1.s, z2.s
|
|
zbar .req z1
|
|
add z0.s, zbar.s, z2.s
|