Displaying 1 result from an estimated 1 matches for "0122b73529f4c377173454e1743eeea4".
2018 Feb 24
0
jump table crash with x64 JIT
Hi,
I'm successfully using LLVM in my compiler project, but it works only if I
disable *jump tables* codegen.
In the following gist
<https://gist.github.com/csabahruska/0122b73529f4c377173454e1743eeea4> you
can find the generated LLVM IR and x64 code for the buggy
<https://gist.github.com/csabahruska/0122b73529f4c377173454e1743eeea4#file-bug-s>
and working
<https://gist.github.com/csabahruska/0122b73529f4c377173454e1743eeea4#file-ok-s>
version of the same program. The ok.ll and bug...