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