1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello" 2*f4a2713aSLionel Sambuc Foo(void)3*f4a2713aSLionel Sambucunsigned char * Foo( void ) 4*f4a2713aSLionel Sambuc { 5*f4a2713aSLionel Sambuc static unsigned char s[256] = "\pHello"; 6*f4a2713aSLionel Sambuc return s; 7*f4a2713aSLionel Sambuc } 8*f4a2713aSLionel Sambuc 9