repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-01-24-HandleCallInsnSEGV.c
blob
09029fb945ef00c29fba1c9710933a0445513a50
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
void
*
dlclose
(
void
*);
4
5
void
ap_os_dso_unload
(
void
*
handle
)
6
{
7
dlclose
(
handle
);
8
return
;
/* This return triggers the bug: Weird */
9
}