[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / 2002-03-14-QuotesInStrConst.c
blob85773e38d4df7063aab11ed5afca1750cff81f46
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
3 /* GCC was not escaping quotes in string constants correctly, so this would
4 * get emitted:
5 * %.LC1 = internal global [32 x sbyte] c"*** Word "%s" on line %d is not\00"
6 */
8 const char *Foo(void) {
9 return "*** Word \"%s\" on line %d is not";