brintos

brintos / llvm-project-archived public Read only

0
0
Text · 513 B · 815dcea Raw
20 lines · plain
1; RUN: llc -mtriple=hexagon -hexagon-small-data-threshold=8 < %s | FileCheck %s2; CHECK: = memd(gp+#g0)3; If an object will be placed in .sdata, do not shrink any references to it.4; In this case, g0 must be loaded via memd.5 6target triple = "hexagon"7 8@g0 = common global i64 0, align 89 10define i32 @f0() #0 {11entry:12  %v0 = load i64, ptr @g0, align 813  %v1 = trunc i64 %v0 to i814  %v2 = zext i8 %v1 to i3215  ret i32 %v216}17 18attributes #0 = { nounwind "target-cpu"="hexagonv60" "target-features"="+small-data" }19 20