mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
650af5d0f8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127033 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
327 B
LLVM
14 lines
327 B
LLVM
; RUN: llc -march=mipsel < %s | FileCheck %s
|
|
|
|
; CHECK: lui $at, 49152
|
|
; CHECK: lui $at, 16384
|
|
define void @f() nounwind {
|
|
entry:
|
|
%a1 = alloca [1073741824 x i8], align 1
|
|
%arrayidx = getelementptr inbounds [1073741824 x i8]* %a1, i32 0, i32 1048676
|
|
call void @f2(i8* %arrayidx) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @f2(i8*)
|