brintos

brintos / llvm-project-archived public Read only

0
0
Text · 154 B · 8d7d12e Raw
8 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s2 3void foo(int *P) {4  // CHECK: llvm.prefetch5  __builtin_prefetch(P);6  __builtin_prefetch(P, 1);7}8