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
29 lines
607 B
LLVM
29 lines
607 B
LLVM
; RUN: llc < %s -march=arm64 | FileCheck %s
|
|
; rdar://12771555
|
|
|
|
define void @foo(i16* %ptr, i32 %a) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: foo:
|
|
%tmp1 = icmp ult i32 %a, 100
|
|
br i1 %tmp1, label %bb1, label %bb2
|
|
bb1:
|
|
; CHECK: %bb1
|
|
; CHECK: ldrh [[REG:w[0-9]+]]
|
|
%tmp2 = load i16* %ptr, align 2
|
|
br label %bb2
|
|
bb2:
|
|
; CHECK: %bb2
|
|
; CHECK-NOT: and {{w[0-9]+}}, [[REG]], #0xffff
|
|
; CHECK: cmp [[REG]], #23
|
|
%tmp3 = phi i16 [ 0, %entry ], [ %tmp2, %bb1 ]
|
|
%cmp = icmp ult i16 %tmp3, 24
|
|
br i1 %cmp, label %bb3, label %exit
|
|
bb3:
|
|
call void @bar() nounwind
|
|
br label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
declare void @bar ()
|