You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This suggests that the bug is in clang/LLVM itself and not LowFat (LowFat merely enables the large code model enabled when the -fsanitize=lowfat flag is present). The bug also appears in later versions of LLVM, and has been reported before:
Reported by Hu Hong:
Clang sometimes crashes with LowFat enabled. For example, the program:
will cause
clang
/LLVM to crash if LowFat is enabled:The same crash occurs with unmodified
clang
/LLVM with thelarge
code model enabled:This suggests that the bug is in
clang
/LLVM itself and not LowFat (LowFat merely enables thelarge
code model enabled when the-fsanitize=lowfat
flag is present). The bug also appears in later versions of LLVM, and has been reported before:http://lists.llvm.org/pipermail/llvm-bugs/2016-March/045572.html
The following options will work-around the problem, but also mean that globals will not be instrumented:
The text was updated successfully, but these errors were encountered: