Hello everybody,<br /><br />I have sucessfully compiled LLVM with CMAKE generator "Visual Studio 9 2008 Win64" (OS Windows 7).<br /><br />-But when I run the Fibonacci example program in "release" mode, I get a crash with this visual studio popup message :<br />Microsoft Visual Studio C Runtime Library has detected a fatal error in Fibonacci.exe.<br /><br />-Here is the visual studio output:<br />'Fibonacci.exe': Loaded 'C:\Users\IUC\Desktop\BUILD_64\bin\Release\Fibonacci.exe', Binary was not built with debug information.<br />'Fibonacci.exe': Loaded 'C:\Windows\System32\ntdll.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\System32\kernel32.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\System32\KernelBase.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4967_none_08e58abba83c6451\msvcp90.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\winsxs\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4967_none_08e58abba83c6451\msvcr90.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\System32\dbghelp.dll'<br />'Fibonacci.exe': Loaded 'C:\Windows\System32\msvcrt.dll'<br />Microsoft Visual Studio C Runtime Library has detected a fatal error in Fibonacci.exe.<br /><br />Press Break to debug the program or Continue to terminate the program.<br /><br />-And here is the callstack in release mode :(:<br />> msvcr90.dll!000000006a8b9f48()  <br />    [Frames below may be incorrect and/or missing, no symbols loaded for msvcr90.dll]       <br />    msvcr90.dll!000000006a8b52a5()  <br />    msvcr90.dll!000000006a8b52f5()  <br />    Fibonacci.exe!000000013ffac08e()        <br />    Fibonacci.exe!00000001401551fd()        <br />    Fibonacci.exe!00000001401564d0()        <br />    Fibonacci.exe!0000000140156852()        <br />    Fibonacci.exe!000000013fdb7180()        <br />    Fibonacci.exe!000000013fdb749b()        <br />    Fibonacci.exe!000000013fdb7913()        <br />    Fibonacci.exe!000000013fda2231()        <br />    Fibonacci.exe!00000001401bfa82()        <br />    kernel32.dll!0000000076bdf56d()         <br />    ntdll.dll!0000000076e12cc1()    <br /><br /><br />It crashes after IR compilation when calling the JIT, the last program message is :<br />starting fibonacci(24) with JIT...<br /><br />Please also note that it works fine in debug mode.<br />Seems to be a bug, but maybe I have missed something.. any idea would be really appreciated :)<br />Thanks!<br />Damien