blob: ae76a6c6379dbbbe21888a60e0c1df9202fc310d [file] [log] [blame]
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
struct Gfx {
void opMoveSetShowText();
};
struct Operator {
void (Gfx::*func)();
};
Operator opTab[] = {
{&Gfx::opMoveSetShowText},
};