17 lines · plain
1; Test the ICBT instruction on POWER82; Copied from the ppc64-prefetch.ll test3; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr8 < %s | FileCheck %s4 5declare void @llvm.prefetch(ptr, i32, i32, i32)6 7define void @test(ptr %a, ...) nounwind {8entry:9 call void @llvm.prefetch(ptr %a, i32 0, i32 3, i32 0)10 ret void11 12; CHECK-LABEL: @test13; CHECK: icbt14}15 16 17