We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
$ clang++ -fsanitize=effective -std=c++11 -c crash.cpp fatal error: error in backend: Cannot select: 0x593c230: i64 = X86ISD::WrapperRIP TargetGlobalTLSAddress:i64<i8** @_ZSt15__once_callable> 0 [TF=10] 0x5875d20: i64 = TargetGlobalTLSAddress<i8** @_ZSt15__once_callable> 0 [TF=10] In function: ...
This is a bug inherited from LLVM that affects any program compiled using the "large" code model. See LowFat issue #12 for more information.
The work-around is to disable global instrumentation using the following compiler options:
-mllvm -effective-no-globals -mcmodel=small
However, this means that errors relating to global objects will not be detected.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example:
This is a bug inherited from LLVM that affects any program compiled using the "large" code model. See LowFat issue #12 for more information.
The work-around is to disable global instrumentation using the following compiler options:
However, this means that errors relating to global objects will not be detected.
The text was updated successfully, but these errors were encountered: