Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / FrontendC / 2004-03-15-SimpleIndirectGoto.c
bloba3f27b2a330148273c20f31c4c011103d4cdf555
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 int code[]={0,0,0,0,1};
4 void foo(int x) {
5 volatile int b;
6 b = 0xffffffff;
8 void bar(int *pc) {
9 static const void *l[] = {&&lab0, &&end};
11 foo(0);
12 goto *l[*pc];
13 lab0:
14 foo(0);
15 pc++;
16 goto *l[*pc];
17 end:
18 return;
20 int main() {
21 bar(code);
22 return 0;