Silence -Wunused-variable in release builds.
[llvm/stm8.git] / test / FrontendC++ / 2003-12-08-ArrayOfPtrToMemberFunc.cpp
blobb87e7869ed72c629c3ed16bea11b80a63d216743
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
3 struct Evil {
4 void fun ();
5 };
6 int foo();
7 typedef void (Evil::*memfunptr) ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() {
11 (this->*jumpTable[foo()]) ();