repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
FrontendC
/
2007-02-07-AddrLabel.c
blob
03ed4c987e440b85eba1fabc56d4067b148ed78a
1
// PR947
2
// RUN: %llvmgcc %s -S -o -
3
4
void
foo
() {
5
void
*
ptr
;
6
label
:
7
ptr
= &&
label
;
8
9
goto
*
ptr
;
10
}