Chris Lattner | f5c04ef | 2002-03-14 20:16:23 +0000 | [diff] [blame^] | 1 | /* GCC was not escaping quotes in string constants correctly, so this would |
2 | * get emitted: | ||||
3 | * %.LC1 = internal global [32 x sbyte] c"*** Word "%s" on line %d is not\00" | ||||
4 | */ | ||||
5 | |||||
6 | const char *Foo() { | ||||
7 | return "*** Word \"%s\" on line %d is not"; | ||||
8 | } |