brintos

brintos / llvm-project-archived public Read only

0
0
Text · 363 B · a7ce79e Raw
19 lines · plain
1; RUN: llc -mtriple=hexagon < %s | FileCheck %s2 3; Check that intrinsic int_hexagon_Y2_dcfetch is mapped to Y2_dcfetchbo4; (not Y2_dcfetch).5 6; CHECK: dcfetch(r0+#0)7 8target triple = "hexagon"9 10define void @fred(ptr %a0) #0 {11  call void @llvm.hexagon.Y2.dcfetch(ptr %a0)12  ret void13}14 15declare void @llvm.hexagon.Y2.dcfetch(ptr) #016 17attributes #0 = { nounwind }18 19