[CodeGen] Remove some implict conversions of MCRegister to unsigned by using(). NFC
[llvm-project.git] / llvm / test / CodeGen / Hexagon / common-gep-inbounds.ll
blob90e68fb25c3d6d4b8bd6cc9940f6ed4482b1da79
1 ; RUN: llc -mtriple=hexagon -debug-only=commgep 2>&1 < %s | FileCheck %s
2 ; REQUIRES: asserts
4 ; We should generate new GEPs with "inbounds" flag.
5 ; CHECK: new GEP:{{.*}}inbounds
6 ; CHECK: new GEP:{{.*}}inbounds
8 target triple = "hexagon"
10 %struct.0 = type { i16, i16 }
12 ; Function Attrs: nounwind
13 define i16 @TraceBack(ptr %t) #0 {
14 entry:
15   %p = getelementptr inbounds %struct.0, ptr %t, i32 0, i32 1
16   %a = load i16, ptr %p
17   ret i16 %a
20 attributes #0 = { nounwind "target-cpu"="hexagonv60" "target-features"="-hvx,-long-calls" }