mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-15 00:49:53 -04:00
9 lines
161 B
C
9 lines
161 B
C
// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
|
|
|
|
unsigned char * Foo( void )
|
|
{
|
|
static unsigned char s[256] = "\pHello";
|
|
return s;
|
|
}
|
|
|