1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s 2*f4a2713aSLionel Sambuc foo(int * P)3*f4a2713aSLionel Sambucvoid foo(int *P) { 4*f4a2713aSLionel Sambuc // CHECK: llvm.prefetch 5*f4a2713aSLionel Sambuc __builtin_prefetch(P); 6*f4a2713aSLionel Sambuc __builtin_prefetch(P, 1); 7*f4a2713aSLionel Sambuc } 8