1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CFrontend/2007-04-24-str-const.c
Chris Lattner d5396b6545 rename C files to end with .c
llvm-svn: 37535
2007-06-09 06:10:47 +00:00

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++;
}