mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
d7f173214f
I'm doing this in two phases for a better "git blame" record. This commit removes the previous AArch64 backend and redirects all functionality to ARM64. It also deduplicates test-lines and removes orphaned AArch64 tests. The next step will be "git mv ARM64 AArch64" and rewire most of the tests. Hopefully LLVM is still functional, though it would be even better if no-one ever had to care because the rename happens straight afterwards. llvm-svn: 209576
15 lines
432 B
LLVM
15 lines
432 B
LLVM
; RUN: llc -verify-machineinstrs -o - %s -mtriple=arm64-apple-ios7.0 | FileCheck %s
|
|
|
|
define i64 @test_free_zext(i8* %a, i16* %b) {
|
|
; CHECK-LABEL: test_free_zext
|
|
; CHECK-DAG: ldrb w[[A:[0-9]+]], [x0]
|
|
; CHECK: ldrh w[[B:[0-9]+]], [x1]
|
|
; CHECK: add x0, x[[B]], x[[A]]
|
|
%1 = load i8* %a, align 1
|
|
%conv = zext i8 %1 to i64
|
|
%2 = load i16* %b, align 2
|
|
%conv1 = zext i16 %2 to i64
|
|
%add = add nsw i64 %conv1, %conv
|
|
ret i64 %add
|
|
}
|