mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
91bb437eb8
As discussed on PR27654, this patch fixes the triples of a lot of aarch64 tests and enables lit tests on windows This will hopefully help stop cases where windows developers break the aarch64 target Differential Revision: https://reviews.llvm.org/D22191 llvm-svn: 275973
20 lines
540 B
LLVM
20 lines
540 B
LLVM
; RUN: llc < %s -mtriple=aarch64-linux-gnu | FileCheck %s
|
|
|
|
%structA = type { i128 }
|
|
@stubA = internal unnamed_addr constant %structA zeroinitializer, align 8
|
|
|
|
; Make sure we don't hit llvm_unreachable.
|
|
|
|
define void @test1() {
|
|
; CHECK-LABEL: @test1
|
|
; CHECK: adrp
|
|
; CHECK: ldr q0
|
|
; CHECK: str q0
|
|
; CHECK: ret
|
|
entry:
|
|
tail call void @llvm.memcpy.p0i8.p0i8.i64(i8* undef, i8* bitcast (%structA* @stubA to i8*), i64 48, i32 8, i1 false)
|
|
ret void
|
|
}
|
|
|
|
declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i32, i1)
|