mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
18 lines
232 B
C
18 lines
232 B
C
|
// RUN: %llvmgcc -c %s -o /dev/null
|
||
|
static char *str;
|
||
|
|
||
|
static const struct {
|
||
|
const char *name;
|
||
|
unsigned type;
|
||
|
} scan_special[] = {
|
||
|
{"shift", 1},
|
||
|
{0, 0}
|
||
|
};
|
||
|
|
||
|
static void
|
||
|
sb(void)
|
||
|
{
|
||
|
while (*str == ' ' || *str == '\t')
|
||
|
str++;
|
||
|
}
|