repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2005-03-11-Prefetch.c
blob
8d7d12edcbd2ece01797f1dc5322e132baaa8639
1
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3
void
foo
(
int
*
P
) {
4
// CHECK: llvm.prefetch
5
__builtin_prefetch
(
P
);
6
__builtin_prefetch
(
P
,
1
);
7
}