mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
ca0f4dc4f0
This commit starts with a "git mv ARM64 AArch64" and continues out from there, renaming the C++ classes, intrinsics, and other target-local objects for consistency. "ARM64" test directories are also moved, and tests that began their life in ARM64 use an arm64 triple, those from AArch64 use an aarch64 triple. Both should be equivalent though. This finishes the AArch64 merge, and everyone should feel free to continue committing as normal now. llvm-svn: 209577
50 lines
1.2 KiB
LLVM
50 lines
1.2 KiB
LLVM
; RUN: llc -mtriple=arm64-apple-ios -mcpu=cyclone < %s | FileCheck %s
|
|
; rdar://11481771
|
|
; rdar://13713797
|
|
|
|
define void @t1() nounwind ssp {
|
|
entry:
|
|
; CHECK-LABEL: t1:
|
|
; CHECK-NOT: fmov
|
|
; CHECK: movi.2d v0, #0000000000000000
|
|
; CHECK: movi.2d v1, #0000000000000000
|
|
; CHECK: movi.2d v2, #0000000000000000
|
|
; CHECK: movi.2d v3, #0000000000000000
|
|
tail call void @bar(double 0.000000e+00, double 0.000000e+00, double 0.000000e+00, double 0.000000e+00) nounwind
|
|
ret void
|
|
}
|
|
|
|
define void @t2() nounwind ssp {
|
|
entry:
|
|
; CHECK-LABEL: t2:
|
|
; CHECK-NOT: mov w0, wzr
|
|
; CHECK: movz w0, #0
|
|
; CHECK: movz w1, #0
|
|
tail call void @bari(i32 0, i32 0) nounwind
|
|
ret void
|
|
}
|
|
|
|
define void @t3() nounwind ssp {
|
|
entry:
|
|
; CHECK-LABEL: t3:
|
|
; CHECK-NOT: mov x0, xzr
|
|
; CHECK: movz x0, #0
|
|
; CHECK: movz x1, #0
|
|
tail call void @barl(i64 0, i64 0) nounwind
|
|
ret void
|
|
}
|
|
|
|
define void @t4() nounwind ssp {
|
|
; CHECK-LABEL: t4:
|
|
; CHECK-NOT: fmov
|
|
; CHECK: movi.2d v0, #0000000000000000
|
|
; CHECK: movi.2d v1, #0000000000000000
|
|
tail call void @barf(float 0.000000e+00, float 0.000000e+00) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @bar(double, double, double, double)
|
|
declare void @bari(i32, i32)
|
|
declare void @barl(i64, i64)
|
|
declare void @barf(float, float)
|