repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git]
/
test
/
FrontendC++
/
2003-11-18-PtrMemConstantInitializer.cpp
blob
ae76a6c6379dbbbe21888a60e0c1df9202fc310d
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -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