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
21 lines
621 B
LLVM
21 lines
621 B
LLVM
; RUN: llc < %s -march=arm64 | FileCheck %s
|
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-n32:64"
|
|
target triple = "arm64-apple-darwin11.0.0"
|
|
|
|
define float @t1(i8* nocapture %fmt, ...) nounwind ssp {
|
|
entry:
|
|
; CHECK: t1
|
|
; CHECK: fcvt
|
|
%argp = alloca i8*, align 8
|
|
%argp1 = bitcast i8** %argp to i8*
|
|
call void @llvm.va_start(i8* %argp1)
|
|
%0 = va_arg i8** %argp, i32
|
|
%1 = va_arg i8** %argp, float
|
|
call void @llvm.va_end(i8* %argp1)
|
|
ret float %1
|
|
}
|
|
|
|
declare void @llvm.va_start(i8*) nounwind
|
|
|
|
declare void @llvm.va_end(i8*) nounwind
|