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
[flang] Fix crash in HLFIR generation (#118399)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
merge-attrs.c
blob
0758174d64f8f38ca4e81d1534748d34ce777cd2
1
// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3
void
*
malloc
(
__SIZE_TYPE__ size
)
__attribute__
((
__nothrow__
));
4
5
inline
static void
__zend_malloc
(
int
) {
6
malloc
(
1
);
7
}
8
9
void
*
malloc
(
__SIZE_TYPE__ size
)
__attribute__
((
__nothrow__
));
10
11
void
fontFetch
(
void
) {
12
__zend_malloc
(
1
);
13
}