We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533a42f commit dcac742Copy full SHA for dcac742
clang/lib/Basic/Sanitizers.cpp
@@ -52,8 +52,7 @@ SanitizerMaskCutoffs::getAllScaled(unsigned ScalingFactor) const {
52
for (unsigned int i = 0; i < SanitizerKind::SO_Count; ++i) {
53
auto C = (*this)[i];
54
if (C.has_value()) {
55
- ScaledCutoffs.push_back(
56
- lround(std::clamp(*C, 0.0, 1.0) * ScalingFactor));
+ ScaledCutoffs.push_back(lround(std::clamp(*C, 0.0, 1.0) * ScalingFactor));
57
AnyCutoff = true;
58
} else {
59
ScaledCutoffs.push_back(0);
0 commit comments