2016-10-15 06:18:18 +08:00
|
|
|
# RUN: llc -O0 -run-pass=legalizer -global-isel %s -o - 2>&1 | FileCheck %s
|
2016-09-15 19:02:19 +08:00
|
|
|
|
|
|
|
--- |
|
|
|
|
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
2016-10-14 18:19:40 +08:00
|
|
|
target triple = "aarch64--"
|
2016-09-15 19:02:19 +08:00
|
|
|
define void @test_gep_small() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
...
|
|
|
|
|
|
|
|
---
|
|
|
|
name: test_gep_small
|
|
|
|
registers:
|
|
|
|
- { id: 0, class: _ }
|
|
|
|
- { id: 1, class: _ }
|
|
|
|
- { id: 2, class: _ }
|
|
|
|
- { id: 3, class: _ }
|
|
|
|
body: |
|
|
|
|
bb.0.entry:
|
|
|
|
liveins: %x0, %x1, %x2, %x3
|
|
|
|
; CHECK-LABEL: name: test_gep_small
|
|
|
|
; CHECK: [[OFFSET_EXT:%[0-9]+]](s64) = G_SEXT %2(s8)
|
|
|
|
; CHECK: %3(p0) = G_GEP %0, [[OFFSET_EXT]](s64)
|
|
|
|
|
|
|
|
%0(p0) = COPY %x0
|
|
|
|
%1(s64) = COPY %x1
|
|
|
|
%2(s8) = G_TRUNC %1
|
|
|
|
%3(p0) = G_GEP %0, %2(s8)
|
|
|
|
%x0 = COPY %3
|
|
|
|
...
|