Lines Matching refs:dispatch_table
16 …static void* dispatch_table[] = {&&inc, // expected-error {{the GNU address of label extensio… in f1() local
19 #define DISPATCH() goto *dispatch_table[*inst++] in f1()
33 void* dispatch_table[] = {nullptr, nullptr, nullptr}; in f2() local
34 …dispatch_table[0] = &&inc; // expected-error {{the GNU address of label extension is not allo… in f2()
35 …dispatch_table[1] = &&suspend; // expected-error {{the GNU address of label extension is not allo… in f2()
36 …dispatch_table[2] = &&stop; // expected-error {{the GNU address of label extension is not allo… in f2()
37 #define DISPATCH() goto *dispatch_table[*inst++] in f2()
51 void* dispatch_table[] = {nullptr, nullptr, nullptr}; in f3() local
53 …dispatch_table[0] = &&inc; // expected-error {{the GNU address of label extension is not allo… in f3()
54 …dispatch_table[1] = &&suspend; // expected-error {{the GNU address of label extension is not allo… in f3()
55 …dispatch_table[2] = &&stop; // expected-error {{the GNU address of label extension is not allo… in f3()
56 #define DISPATCH() goto *dispatch_table[*inst++] in f3()