Replace PROLOG_LABEL with a new CFI_INSTRUCTION.
[oota-llvm.git] / test / CodeGen / AArch64 / cpus.ll
1 ; This tests that llc accepts all valid AArch64 CPUs
2
3 ; RUN: llc < %s -mtriple=aarch64-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
4 ; RUN: llc < %s -mtriple=aarch64-unknown-unknown -mcpu=cortex-a53 2>&1 | FileCheck %s
5 ; RUN: llc < %s -mtriple=aarch64-unknown-unknown -mcpu=cortex-a57 2>&1 | FileCheck %s
6 ; RUN: llc < %s -mtriple=aarch64-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
7
8 ; CHECK-NOT: {{.*}}  is not a recognized processor for this target
9 ; INVALID: {{.*}}  is not a recognized processor for this target
10
11 define i32 @f(i64 %z) {
12         ret i32 0
13 }