repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git]
/
test
/
FrontendC++
/
2003-11-18-PtrMemConstantInitializer.cpp
blob
72609e7ccb463db6a377c7f94b48d7c3b1ac06b2
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
struct
Gfx
{
4
void
opMoveSetShowText
();
5
};
6
7
struct
Operator
{
8
void
(
Gfx
::*
func
)();
9
};
10
11
Operator opTab
[] = {
12
{&
Gfx
::
opMoveSetShowText
},
13
};
14