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
[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-01-24-HandleCallInsnSEGV.c
blob
739a841bbdff3c08304817e1769ef8bfae4a6905
1
// RUN: %clang_cc1 -emit-llvm %s -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
}