You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
382 B
12 lines
382 B
; RUN: llvm-as %s -o - -f | llvm-dis | FileCheck %s
|
|
; RUN: llvm-as %s -o - -f | verify-uselistorder
|
|
|
|
declare aarch64_vector_pcs void @aarch64_vector_pcs()
|
|
; CHECK: declare aarch64_vector_pcs void @aarch64_vector_pcs
|
|
|
|
define void @call_aarch64_vector_pcs() {
|
|
; CHECK: call aarch64_vector_pcs void @aarch64_vector_pcs
|
|
call aarch64_vector_pcs void @aarch64_vector_pcs()
|
|
ret void
|
|
}
|