repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
pascal-string.c
blob
0a9ee67ea01ee50b86fe9f3efd62cf300b6d58e3
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