mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
5c87b732f2
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167315 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
343 B
LLVM
14 lines
343 B
LLVM
; RUN: llc -march=mipsel < %s | FileCheck %s
|
|
|
|
; CHECK: lui ${{[0-9]+}}, 49152
|
|
; CHECK: lui ${{[0-9]+}}, 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*)
|