Displaying 1 result from an estimated 1 matches for "7ffbd778".
Did you mean:
7ffb078
2014 Oct 05
2
[LLVMdev] Question about jumptable and indirect function call.
Hi all,
I'm a beginner in LLVM. I read a paper recently, and I'm trying to use LLVM
jumptable in 3.5. When I compile the .bc file into .s file, I tried to use
the different jumptable type: all, single, ...
e.g.
clang -c -emit-llvm test.c
llc test.bc -jump-table-type=full -o test-full.s
llc test.bc -jump-table-type=single -o test-single.s
The tested C source code is like:
void foo() {