2013-02-01 19:40:47 +08:00
|
|
|
; RUN: llc -mtriple=aarch64-none-linux-gnu -verify-machineinstrs < %s | FileCheck %s
|
2013-01-31 20:12:40 +08:00
|
|
|
|
|
|
|
; 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) {
|
2013-07-14 04:38:47 +08:00
|
|
|
; CHECK-LABEL: test_bitcast_lower:
|
2013-01-31 20:12:40 +08:00
|
|
|
|
|
|
|
ret void
|
|
|
|
; CHECK: ret
|
|
|
|
}
|