repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git]
/
test
/
Lexer
/
digraph.c
blob
cf6e4789afa8d9c1c10406ed96aadfa7247e0164
1
// RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
2
3
%:
include
<
stdint
.
h
>
4
5
%:
ifndef BUFSIZE
6
%:
define BUFSIZE
512
7
%:
endif
8
9
void
copy
(
char
d
<::>,
const char
s
<::>,
int
len
)
10
<%
11
while
(
len
-- >=
0
)
12
<%
13
d
<:
len
:> =
s
<:
len
:>;
14
%>
15
%>