mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
1e3f66afe8
No code changes for this bunch, just some test rejigs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206291 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
517 B
LLVM
16 lines
517 B
LLVM
; RUN: llc -verify-machineinstrs < %s -mtriple=aarch64-none-linux-gnu | FileCheck %s
|
|
; 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
|
|
}
|