[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / 2007-04-24-str-const.c
blob1d86d1c251d306ea6474210c771179251fa3a85d
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2 static char *str;
4 static const struct {
5 const char *name;
6 unsigned type;
7 } scan_special[] = {
8 {"shift", 1},
9 {0, 0}
12 static void
13 sb(void)
15 while (*str == ' ' || *str == '\t')
16 str++;