Imported Upstream version 5.18.0.234

Former-commit-id: 8071ec1a8c5eaa9be24b41745add19297608001f
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-01-08 08:22:36 +00:00
parent f32dbaf0b2
commit 212f6bafcb
28494 changed files with 359 additions and 3867025 deletions

View File

@@ -1,57 +0,0 @@
// RUN: not llvm-mc -triple aarch64-unknown-none-eabi -filetype asm -o - %s 2>&1 | FileCheck %s
.arch axp64
# CHECK: error: unknown arch name
# CHECK: .arch axp64
# CHECK: ^
.arch armv8
aese v0.8h, v1.8h
# CHECK: error: invalid operand for instruction
# CHECK: aese v0.8h, v1.8h
# CHECK: ^
// We silently ignore invalid features.
.arch armv8+foo
aese v0.8h, v1.8h
# CHECK: error: invalid operand for instruction
# CHECK: aese v0.8h, v1.8h
# CHECK: ^
.arch armv8+crypto
.arch armv8
aese v0.8h, v1.8h
# CHECK: error: invalid operand for instruction
# CHECK: aese v0.8h, v1.8h
# CHECK: ^
.arch armv8.1-a+noras
esb
# CHECK: error: instruction requires: ras
# CHECK: esb
// PR32873: without extra features, '.arch' is currently ignored.
// Add an unrelated feature to accept the directive.
.arch armv8+crc
casa w5, w7, [x19]
# CHECK: error: instruction requires: lse
# CHECK: casa w5, w7, [x19]
.arch armv8+crypto
crc32b w0, w1, w2
# CHECK: error: instruction requires: crc
# CHECK: crc32b w0, w1, w2
.arch armv8.1-a+nolse
casa w5, w7, [x20]
# CHECK: error: instruction requires: lse
# CHECK: casa w5, w7, [x20]