Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
pascal-string.c
blob: 0a9ee67ea01ee50b86fe9f3efd62cf300b6d58e3 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s -fpascal-strings | grep "05Hello"
unsigned
char
*
Foo
(
void
)
{
static
unsigned
char
s
[
256
]
=
"\pHello"
;
return
s
;
}