Get rid of this horrible "benign race" by exploiting ManagedStatic to initialize
[oota-llvm.git] / test / FrontendC / 2005-03-11-Prefetch.c
1 // RUN: %llvmgcc %s -S -o - | llvm-as | llvm-dis | grep llvm.prefetch
2
3 void foo(int *P) {
4   __builtin_prefetch(P);
5   __builtin_prefetch(P, 1);
6 }