According to my auto-simplifier the most common missed simplifications in
[llvm/stm8.git] / test / FrontendC++ / 2003-11-18-PtrMemConstantInitializer.cpp
blob72609e7ccb463db6a377c7f94b48d7c3b1ac06b2
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 struct Gfx {
4 void opMoveSetShowText();
5 };
7 struct Operator {
8 void (Gfx::*func)();
9 };
11 Operator opTab[] = {
12 {&Gfx::opMoveSetShowText},