summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/common-gep-inbounds.ll
blob: 738cb6a8d9df86040a2070bdcf3a037e3a80f788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: llc -march=hexagon -debug-only=commgep 2>&1 < %s | FileCheck %s
; REQUIRES: asserts

; We should generate new GEPs with "inbounds" flag.
; CHECK: new GEP:{{.*}}inbounds
; CHECK: new GEP:{{.*}}inbounds

target triple = "hexagon"

%struct.0 = type { i16, i16 }

; Function Attrs: nounwind
define i16 @TraceBack(%struct.0* %t) #0 {
entry:
  %p = getelementptr inbounds %struct.0, %struct.0* %t, i32 0, i32 0
  %a = load i16, i16* %p
  ret i16 %a
}

attributes #0 = { nounwind "target-cpu"="hexagonv60" "target-features"="-hvx,-long-calls" }
OpenPOWER on IntegriCloud