mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +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
28 lines
812 B
LLVM
28 lines
812 B
LLVM
; RUN: llc < %s -march=arm64 | FileCheck %s
|
|
define i64 @normal_load(i64* nocapture %bar) nounwind readonly {
|
|
; CHECK: normal_load
|
|
; CHECK: ldp
|
|
; CHECK-NEXT: add
|
|
; CHECK-NEXT: ret
|
|
%add.ptr = getelementptr inbounds i64* %bar, i64 1
|
|
%tmp = load i64* %add.ptr, align 8
|
|
%add.ptr1 = getelementptr inbounds i64* %bar, i64 2
|
|
%tmp1 = load i64* %add.ptr1, align 8
|
|
%add = add nsw i64 %tmp1, %tmp
|
|
ret i64 %add
|
|
}
|
|
|
|
define i64 @volatile_load(i64* nocapture %bar) nounwind {
|
|
; CHECK: volatile_load
|
|
; CHECK: ldr
|
|
; CHECK-NEXT: ldr
|
|
; CHECK-NEXT: add
|
|
; CHECK-NEXT: ret
|
|
%add.ptr = getelementptr inbounds i64* %bar, i64 1
|
|
%tmp = load volatile i64* %add.ptr, align 8
|
|
%add.ptr1 = getelementptr inbounds i64* %bar, i64 2
|
|
%tmp1 = load volatile i64* %add.ptr1, align 8
|
|
%add = add nsw i64 %tmp1, %tmp
|
|
ret i64 %add
|
|
}
|