brintos

brintos / llvm-project-archived public Read only

0
0
Text · 161 B · 0a9ee67 Raw
9 lines · c
1// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"2 3unsigned char * Foo( void )4{5  static unsigned char s[256] = "\pHello";6  return s;7}8 9