mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-08 19:06:39 +00:00
5ae1da96f2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127598 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
318 B
LLVM
15 lines
318 B
LLVM
; RUN: llc < %s -mtriple=armv7-apple-darwin -mcpu=cortex-a8 | FileCheck %s
|
|
|
|
; No need to sign-extend undef.
|
|
|
|
define i32 @t(i32* %a) nounwind {
|
|
entry:
|
|
; CHECK: t:
|
|
; CHECK: ldr r0, [r0]
|
|
; CHECK: bx lr
|
|
%0 = sext i16 undef to i32
|
|
%1 = getelementptr inbounds i32* %a, i32 %0
|
|
%2 = load i32* %1, align 4
|
|
ret i32 %2
|
|
}
|