Displaying 1 result from an estimated 1 matches for "codeheaders".
2012 Jul 07
2
[LLVMdev] Crash using the JIT on x86 but work on x64
...estclass1.test2(std::string("HI! testclass1"));
TestClass1 _testclass1;
_testclass1.test2(std::string("Hello world!"));
printf("\nEnding bitcode...\n\n");
return true;
}
And the command i’m using for compiling the bitcode:
clang++ -v -O3 -I "../CodeHeaders/VS2010/include" -std=c++11 -emit-llvm "../engine_test.cpp" -c -o engine_test.bc
>From what i have see it could be a bug with the "getMethodPointer" function (i’m using it for getting the address of the function in a class). Or with the "delete" operator from w...