mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 05:29:23 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81257 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
305 B
LLVM
13 lines
305 B
LLVM
; RUN: opt %s -instcombine -S | not grep sext
|
|
; XFAIL: *
|
|
|
|
define zeroext i16 @t(i8 zeroext %on_off, i16* nocapture %puls) nounwind readonly {
|
|
entry:
|
|
%0 = zext i8 %on_off to i32
|
|
%1 = add i32 %0, -1
|
|
%2 = sext i32 %1 to i64
|
|
%3 = getelementptr i16* %puls, i64 %2
|
|
%4 = load i16* %3, align 2
|
|
ret i16 %4
|
|
}
|