Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
llvm-project
/
clang
/
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
;
}