mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
87d9138f01
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4015 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
390 B
LLVM
17 lines
390 B
LLVM
; RUN: if as < %s | opt -raise | dis | grep 4294967295
|
|
; RUN: then exit 1
|
|
; RUN: else exit 0
|
|
; RUN: fi
|
|
|
|
%length_code = uninitialized global [256 x ubyte]
|
|
|
|
ubyte* %test(uint %length) {
|
|
%d = add uint 4294967295, %length
|
|
%e = cast uint %d to int
|
|
%g = cast int %e to ulong
|
|
%j = cast [256 x ubyte]* %length_code to ulong
|
|
%l = add ulong %j, %g
|
|
%m = cast ulong %l to ubyte*
|
|
ret ubyte* %m
|
|
}
|