mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
12 lines
325 B
LLVM
12 lines
325 B
LLVM
|
; RUN: llc -march=aarch64 -verify-machineinstrs < %s | FileCheck %s
|
||
|
|
||
|
; CallingConv.td requires a bitcast for vector arguments. Make sure we're
|
||
|
; actually capable of that (the test was omitted from LowerFormalArguments).
|
||
|
|
||
|
define void @test_bitcast_lower(<2 x i32> %a) {
|
||
|
; CHECK: test_bitcast_lower:
|
||
|
|
||
|
ret void
|
||
|
; CHECK: ret
|
||
|
}
|