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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
PR5093-static-member-function.cpp
blob
681135182bf29188b5949b21d75e7c754d00c1c9
1
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
2
struct
a
{
3
static void
f
();
4
};
5
6
void
g
(
a
*
a
) {
7
// CHECK: call {{.*}}void @_ZN1a1fEv()
8
a
->
f
();
9
}