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 e291f31 commit 0b53e7bCopy full SHA for 0b53e7b
clang/lib/Basic/Targets/Hexagon.h
@@ -146,7 +146,7 @@ class LLVM_LIBRARY_VISIBILITY HexagonTargetInfo : public TargetInfo {
146
std::optional<unsigned> Rev = getHexagonCPURev(CPU);
147
148
// V73 and later have 64-byte cache lines.
149
- unsigned CacheLineSizeBytes = Rev >= 73 ? 64 : 32;
+ unsigned CacheLineSizeBytes = Rev >= 73U ? 64 : 32;
150
return std::make_pair(CacheLineSizeBytes, CacheLineSizeBytes);
151
}
152
};
0 commit comments