You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1015 B
31 lines
1015 B
; RUN: llc -march=lanai < %s | FileCheck %s
|
|
; RUN: llc -march=lanai < %s -code-model=small | FileCheck -check-prefix CHECK-SMALL %s
|
|
|
|
@data = external global [0 x i32] ; <[0 x i32]*> [#uses=5]
|
|
|
|
define i32 @foo() nounwind readonly {
|
|
entry:
|
|
; CHECK-SMALL-LABEL: foo:
|
|
; CHECK-SMALL: ld [data], %rv
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: mov hi(data), %r[[REGISTER:[0-9]+]]
|
|
; CHECK: or %r[[REGISTER]], lo(data), %r[[REGISTER]]
|
|
; CHECK: ld 0[%r[[REGISTER]]], %rv
|
|
%0 = load i32, i32* getelementptr ([0 x i32], [0 x i32]* @data, i64 0, i64 0), align 4 ; <i32> [#uses=1]
|
|
ret i32 %0
|
|
}
|
|
|
|
define i32 @foo1() nounwind readonly {
|
|
entry:
|
|
; CHECK-SMALL-LABEL: foo1:
|
|
; CHECK-SMALL: mov data, %r[[REGISTER:[0-9]+]]
|
|
; CHECK-SMALL: ld 40[%r[[REGISTER]]], %rv
|
|
; CHECK-LABEL: foo1:
|
|
; CHECK: mov hi(data), %r[[REGISTER:[0-9]+]]
|
|
; CHECK: or %r[[REGISTER]], lo(data), %r[[REGISTER]]
|
|
; CHECK: ld 40[%r[[REGISTER]]], %rv
|
|
%0 = load i32, i32* getelementptr ([0 x i32], [0 x i32]* @data, i32 0, i64 10), align 4 ; <i32> [#uses=1]
|
|
ret i32 %0
|
|
}
|
|
|