Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
14429b918bd2f4cb52abc75546a7fe37142054ca
/
.
/
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
;
}