]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/pascal-string.c
Vendor import of clang RELEASE_360/rc2 tag r227651 (effectively, 3.6.0 RC2):
[FreeBSD/FreeBSD.git] / test / CodeGen / pascal-string.c
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