search for: r86428

Displaying 3 results from an estimated 3 matches for "r86428".

Did you mean: r66428
2010 Jan 28
0
[LLVMdev] llvm interpreter cannot execute llvm-gcc generated bitcode
Kristaps Straupe wrote: > Hi! > > We are compiling a very large C project in llvm and trying to execute > it in interpreter. There is a problem with executing the generated > bitcode. The interpreter is under-maintained in general, but this bug in particular is fixed SVN as-of r86428. Are you on a platform that isn't supported by llvm's jit? Nick > We are using lli.exe and llvm-gcc.exe from official 2.6 LLVM release. > > We have localized the problem to following c code: > -------------------- > int f(unsigned char x) __attribute__((noinline)); > &g...
2010 Jan 28
3
[LLVMdev] llvm interpreter cannot execute llvm-gcc generated bitcode
Hi! We are compiling a very large C project in llvm and trying to execute it in interpreter. There is a problem with executing the generated bitcode. We are using lli.exe and llvm-gcc.exe from official 2.6 LLVM release. We have localized the problem to following c code: -------------------- int f(unsigned char x) __attribute__((noinline)); int f(unsigned char x) { return x - 1; } int main()
2010 Feb 01
2
[LLVMdev] llvm interpreter cannot execute llvm-gcc generated bitcode
...> Hi! >> >> We are compiling a very large C project in llvm and trying to execute >> it in interpreter. There is a problem with executing the generated >> bitcode. > > The interpreter is under-maintained in general, but this bug in particular > is fixed SVN as-of r86428. Are you on a platform that isn't supported by > llvm's jit? > > Nick > >> We are using lli.exe and llvm-gcc.exe from official 2.6 LLVM release. >> >> We have localized the problem to following c code: >> -------------------- >> int f(unsigned char...