mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
7bc8414ee9
Only Linux is supported at the moment, and other platforms quickly fault. As a result these tests would fail on non-Linux hosts. It may be worth making the tests more generic again as more platforms are supported. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174170 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
342 B
LLVM
12 lines
342 B
LLVM
; RUN: llc -mtriple=aarch64-none-linux-gnu -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
|
|
}
|