diff options
Diffstat (limited to 'test/FrontendC/2007-04-24-str-const.c')
-rw-r--r-- | test/FrontendC/2007-04-24-str-const.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/FrontendC/2007-04-24-str-const.c b/test/FrontendC/2007-04-24-str-const.c deleted file mode 100644 index 3c3dab3..0000000 --- a/test/FrontendC/2007-04-24-str-const.c +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %llvmgcc -S %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++; -} |