repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2007-04-24-str-const.c
blob
4c109c41b0195bd8ee57df8bc2d8f2e6e29bb122
1
// RUN: %llvmgcc -c %s -o /dev/null
2
static char
*
str
;
3
4
static const struct
{
5
const char
*
name
;
6
unsigned
type
;
7
}
scan_special
[] = {
8
{
"shift"
,
1
},
9
{
0
,
0
}
10
};
11
12
static void
13
sb
(
void
)
14
{
15
while
(*
str
==
' '
|| *
str
==
'
\t
'
)
16
str
++;
17
}