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
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-02-07-AddrLabel.c
blob
db62974c78c976b42bbea8bea28a5ba737ac125f
1
// PR947
2
// RUN: %clang_cc1 %s -emit-llvm -o -
3
4
void
foo
(
void
) {
5
void
*
ptr
;
6
label
:
7
ptr
= &&
label
;
8
9
goto
*
ptr
;
10
}